Index

Transition System

A transition system is a pair (Γ, ⇒) where Γ is a set of elements γ, called states or configurations, and ⇒ ⊆ Γ × Γ is a binary relation, called the transition relation.

We say that γ' is a successor of γ if γ⇒γ'.

Example

The following diagramme shows a transition system with Γ={q0, q1, q2, q3}, and ⇒ = {(q0, q1), (q1, q2), (q2, q3), (q3, q0)}.

References

R. Burstall. Language Semantics and Implementation. Course Notes. 1994.

Index