labelled state transition system
A state transition system (TS) is a pair , where is a binary relation on . Elements of are called states and elements of are called transitions. When , we write .
A labelled state transition system (LTS) is a triple where . Elements of are called labels of the system. If , we write . In this way, an LTS can be thought of as an STS where each transition is labelled (possibly by more than one label). On the other hand, any TS is just a LTS with one label and every transition has the same label.
Examples of LTS are mostly found in theoretical computer science, such as automata and Turing machines. An automaton, for example, is just an LTS with two distinguished mutually disjoint sets (subsets of ) of states: a set of start states, and a set of final or accept states.
Given an LTS , if we take the reflexive transitive closure of , then we get a binary relation on called the reachability relation. In other words, for any , , and for any , if , then there is a finite sequence , such that for . When , we say that is reachable from .
For an LTS with a set of start states, a state is said to be inaccessible if it is not reachable from any start state. If is finite, one can use the one of the search techniques to find all inaccessible states of . Here’s a basic breadth-first search algorithm:
-
1.
Initially, circle all start states as accessible. If there are no start states, skip to step 5.
-
2.
Then for each circled , circle all such that .
-
3.
Then cross out each after all such have been circled.
-
4.
Repeat the last two steps for each circled . Do this until there are no more circled states.
-
5.
Finally, the states in are either crossed out or unmarked, and inaccessible states are precisely the unmarked states.
An LTS is said to be deterministic if is a partial function. Otherwise, it is non-deterministic.
Title | labelled state transition system |
Canonical name | LabelledStateTransitionSystem |
Date of creation | 2013-03-22 19:23:20 |
Last modified on | 2013-03-22 19:23:20 |
Owner | CWoo (3771) |
Last modified by | CWoo (3771) |
Numerical id | 17 |
Author | CWoo (3771) |
Entry type | Definition |
Classification | msc 03B45 |
Classification | msc 68Q85 |
Classification | msc 68Q10 |
Synonym | labeled state transition system |
Synonym | TS |
Synonym | LTS |
Synonym | STS |
Synonym | LSTS |
Related topic | SemiThueSystem |
Defines | state transition system |
Defines | reachability |
Defines | reachable |
Defines | inaccessible state |