Simulation (computer science)

From testwiki
Jump to navigation Jump to search

In theoretical computer science a simulation is a relation between state transition systems associating systems that behave in the same way in the sense that one system simulates the other.

Intuitively, a system simulates another system if it can match all of its moves.

The basic definition relates states within one transition system, but this is easily adapted to relate two separate transition systems by building a system consisting of the disjoint union of the corresponding components.

Formal definition

Given a labelled state transition system (S, Λ, →), where S is a set of states, Λ is a set of labels and → is a set of labelled transitions (i.e., a subset of S×Λ×S), a relation RS×S is a simulation if and only if for every pair of states (p,q) in R and all labels λ in Λ:

if pλp, then there is qλq such that (p,q)R

Equivalently, in terms of relational composition:

R1;λλ;R1

Given two states p and q in S, p can be simulated by q, written pq, if and only if there is a simulation R such that (p,q)R. The relation is called the simulation preorder, and it is the union of all simulations: (p,q) precisely when (p,q)R for some simulation R.

The set of simulations is closed under union;[Note 1] therefore, the simulation preorder is itself a simulation. Since it is the union of all simulations, it is the unique largest simulation. Simulations are also closed under reflexive and transitive closure; therefore, the largest simulation must be reflexive and transitive. From this follows that the largest simulation—the simulation preorder—is indeed a preorder relation.[1] Note that there can be more than one relation that is both a simulation and a preorder;[Note 2] the term simulation preorder refers to the largest one of them (which is a superset of all the others).

Two states p and q are said to be similar, written pq, if and only if p can be simulated by q and q can be simulated by p. Similarity is thus the maximal symmetric subset of the simulation preorder, which means it is reflexive, symmetric, and transitive; hence an equivalence relation. However, it is not necessarily a simulation, and precisely in those cases when it is not a simulation, it is strictly coarser than bisimilarity (meaning it is a superset of bisimilarity).[Note 3] To witness, consider a similarity that is a simulation. Since it is symmetric, it is a bisimulation. It must then be a subset of bisimilarity, which is the union of all bisimulations. Yet it is easy to see that similarity is always a superset of bisimilarity. From this follows that if similarity is a simulation, it equals bisimilarity. And if it equals bisimilarity, it is naturally a simulation (since bisimilarity is a simulation). Therefore, similarity is a simulation if and only if it equals bisimilarity. If it does not, it must be its strict superset; hence a strictly coarser equivalence relation.

Similarity of separate transition systems

When comparing two different transition systems (S', Λ', →') and (S", Λ", →"), the basic notions of simulation and similarity can be used by forming the disjoint composition of the two machines, (S, Λ, →) with S = S' ∐ S", Λ = Λ' ∪ Λ" and → = →' ∪ →", where ∐ is the disjoint union operator between sets.

See also

Notes

Template:Reflist

References

  1. Template:Cite conference
  2. Template:Cite conference


Cite error: <ref> tags exist for a group named "Note", but no corresponding <references group="Note"/> tag was found