Comment: This TM produces 6 ones in 14 steps. Comment: Taken (cited) from P.Michel Constructed by $Id: hmBBsimu.awk,v 1.12 2010/07/06 19:46:42 heiner Exp $
| State | on 0 |
on 1 |
on 0 | on 1 | ||||
|---|---|---|---|---|---|---|---|---|
| Move | Goto | Move | Goto | |||||
| A | 1RB | 1RH | 1 | right | B | 1 | right | H |
| B | 0RC | 1RB | 0 | right | C | 1 | right | B |
| C | 1LC | 1LA | 1 | left | C | 1 | left | A |
The same TM just simple.
The same TM with repetitions reduced.
Simulation is done with tape symbol exponents.
The same TM as 1-macro machine.
The same TM as 1-macro machine with pure additive config-TRs.
Step Tpos Tape contents
0 0 <A
1 1 1 B>
2 2 1 0 C>
3 1 1 0 <C 1
4 0 1 <C 1 1
5 -1 <A 13
6 0 1 B> 13
+ 9 3 14 B>
10 4 14 0 C>
11 3 14 0 <C 1
12 2 14 <C 1 1
13 1 13 <A 13
14 2 13 H> 13
After 14 steps (13 lines): state = H.
Produced 6 ones.
Tape index 2, scanned [-1 .. 4].
| State | Count | Execution count | First in step | ||
|---|---|---|---|---|---|
| on 0 | on 1 | on 0 | on 1 | ||
| A | 3 | 2 | 1 | 0 | 13 |
| B | 5 | 2 | 3 | 1 | 6 |
| C | 6 | 4 | 2 | 2 | 4 |