|
MTMS main
Modern Turing Machine Simulator
|
Direction enum class representing the possible directions to move on a Turing Machine. More...
Go to the source code of this file.
Enumerations | |
| enum class | Direction { LEFT , RIGHT , STAY } |
| Specifies the movement direction of the tape head. More... | |
Direction enum class representing the possible directions to move on a Turing Machine.
Definition in file direction.hpp.
|
strong |
Specifies the movement direction of the tape head.
| Enumerator | |
|---|---|
| LEFT | Move the tape head one cell to the left. |
| RIGHT | Move the tape head one cell to the right. |
| STAY | Keep the tape head on the current cell. |
Definition at line 18 of file direction.hpp.