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