Example #1
0
 public void Reset()
 {
     _table.Reset();
     _tape = _initialTape.Clone();
 }
Example #2
0
 public TuringMachine(StatefulTable <TState, TSymbol> table, Tape <TSymbol> tape)
 {
     _table       = table;
     _tape        = tape.Clone();
     _initialTape = tape.Clone();
 }