MTMS main
Modern Turing Machine Simulator
Loading...
Searching...
No Matches
direction.hpp File Reference

Direction enum class representing the possible directions to move on a Turing Machine. More...

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Enumerations

enum class  Direction { LEFT , RIGHT , STAY }
 Specifies the movement direction of the tape head. More...
 

Detailed Description

Direction enum class representing the possible directions to move on a Turing Machine.

Author
wh0crypt (wh0cr.nosp@m.ypt@.nosp@m.proto.nosp@m.n.me)
Version
0.1
Date
2026-06-27

Definition in file direction.hpp.

Enumeration Type Documentation

◆ Direction

enum class Direction
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.