Anzeige von aktuellem Zustand
This commit is contained in:
parent
c0fd79798c
commit
08db5c1342
|
@ -32,7 +32,9 @@ public class TM {
|
|||
try {
|
||||
calcOneStep();
|
||||
appendToBand();
|
||||
|
||||
System.out.println("Step: "+numberOfSteps);
|
||||
System.out.println("Aktueller zustand: Q" + aktuellerZustand);
|
||||
System.out.println(this);
|
||||
} catch (TmException e) {
|
||||
e.printStackTrace();
|
||||
|
@ -40,6 +42,7 @@ public class TM {
|
|||
}
|
||||
}
|
||||
System.out.println("Finished:");
|
||||
System.out.println("Zustand: Q" + aktuellerZustand);
|
||||
System.out.println("Step: "+numberOfSteps);
|
||||
System.out.println(this);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue