예제 #1
0
 public Instance(TuringMachine tm, Tape tape)
 {
     this.tape = tape.Copy();
     this.tm   = tm;
     Position  = 0;
     State     = 1;
     Halted    = false;
 }