Exemple #1
0
 public Instance(TuringMachine tm, Tape tape)
 {
     this.tape = tape.Copy();
     this.tm   = tm;
     Position  = 0;
     State     = 1;
     Halted    = false;
 }
Exemple #2
0
 public Instance(TuringMachine tm, IReadOnlyList <bool> arguments) : this(tm, new Tape(arguments))
 {
 }