Any model that you can explore completely is by definition finite. That means you can try out every single combination in finite time (although in some cases this can be a very long time).
Opposite, an infinite model is one where the number of inputs grow infinite.
Theoretically we cannot have infinite models in a computer, because the state space will be determined by the variables in the model which all have finite ranges - but say you combine two 32bit integers, the state space explodes to 18446744073709551616 states - which is practically infinite.
In general model exploration is bound by number of states and steps, and as such we don't know if a model is infinite if it has more states than the state bound. A classic example of a (practically) infinite model would be a counter with internal state variable int x = 0, and the action Increment() { x++; }. This model will generate a state for every value x >= 0. Exploring the model gives the following result:
We can apply ECP the same way to our model state variables. Instead of modeling the counter fully we could assume that x > 0 is equivalent, thus we adjust the model slightly to be Increment() { if(x < 1) x++; }. Notice that the increment action is valid from any state, but calling Increment with x = 1 does not change the internal state representation. The model is now limited to two states, x = 0 and x = 1. It is also finite under our equivalence assumption. Model exploration gives:
Closing exercise: Extend the counter model to support negative numbers using a Decrement() action and apply ECP to make the state space finite.
[1] Counter models
Hi ,
ReplyDeleteI have started to adopt test design automation strategies for my products. Hope to see more such posts, Nice work.
Thanks Suresh
ReplyDeleteI'm glad you appreciate the blog. What kind of posts do you favor?
-Simon
Well said.Keep updating Artificial Intelligence Online Training
ReplyDelete