|
Automata
1.0
|
A transition for a Turing machine More...
Public Member Functions | |
| TuringTransition (State p, char x, State q, char y, TuringMachine.Direction d) | |
| override string | ToString () |
Public Member Functions inherited from System.Automata.Transition | |
| Transition (State p, char c, State q) | |
| override string | ToString () |
Properties | |
| char | B [get] |
| The character to replace the current tape cell with. More... | |
| TuringMachine.Direction | Direction [get] |
| The direction to move the tape head in. More... | |
Properties inherited from System.Automata.Transition | |
| State | P [get] |
| The current state. More... | |
| State | Q [get] |
| The next state. More... | |
| char | A [get] |
| The symbol to transition on More... | |
A transition for a Turing machine
| System.Automata.TuringTransition.TuringTransition | ( | State | p, |
| char | x, | ||
| State | q, | ||
| char | y, | ||
| TuringMachine.Direction | d | ||
| ) |
| p | The current state. |
| x | The current tape cell contents. |
| q | The next state. |
| y | The character to replace the tape cell with. |
| d | The direction to move the tape head after transitioning. |
|
get |
The character to replace the current tape cell with.
|
get |
The direction to move the tape head in.
1.8.14