MTMS main
Modern Turing Machine Simulator
Loading...
Searching...
No Matches
direction.hpp
Go to the documentation of this file.
1
11#ifndef DIRECTION_HPP
12#define DIRECTION_HPP
13
18enum class Direction
19{
20 LEFT,
21 RIGHT,
22 STAY
23};
24
25#endif // DIRECTION_HPP
Direction
Specifies the movement direction of the tape head.
Definition direction.hpp:19
@ RIGHT
Move the tape head one cell to the right.
@ LEFT
Move the tape head one cell to the left.
@ STAY
Keep the tape head on the current cell.