MTMS main
Modern Turing Machine Simulator
Loading...
Searching...
No Matches
cli.hpp
Go to the documentation of this file.
1
11#ifndef CLI_HPP
12#define CLI_HPP
13
14#include "../core/tm.hpp"
15
16#include <string_view>
17
25int run_cli_session(TuringMachine &machine, std::string_view input_word, bool interactive);
26
27#endif // CLI_HPP
The central execution engine representing a deterministic Multi-Tape Turing Machine.
Definition tm.hpp:33
int run_cli_session(TuringMachine &machine, std::string_view input_word, bool interactive)
Executes the simulation via the terminal view layer.
Definition cli.cpp:53