S0≤s<SC0≤c<C2LRC+4SC
常に、現在のセル、またはトランジションに関係する2つのセルの色のみが強化されている場合があります。他のすべてのセルには本来の色があります。マシンが次のように動作するようにします。実行する真の遷移を確認し、「真の状態」情報を残したいセルからターゲットセルに移動します(これには多くのやり取りが伴います)。残したセル(本当の色を与える)を繰り返します。
遷移前の現在のセルの色は強化されています (c,s)LR(cnew,snew,emit)L
cLc(c,0,L,receive)R
⋯cc(c,s,emit)(c,0,L,receive)cc⋯
ss0L
これを実装するための移行を次に示します。ほとんどすべての場合、現在の状態で指定された方向に移動し、状態を反転します
c→(c,0,⟨dir⟩,receive)⟨dir⟩
(c,s)→(cnew,snew,emit)
(c,s,emit)→(c,s−1,emit)s>0
(c,0,emit)→c
(c,s,⟨dir⟩,receive)→(c,s+1,⟨dir⟩,receive)⟨dir⟩
(c,s,⟨dir⟩,receive)→(c,s) if the state is not ⟨dir⟩; don't move, do whatever you like with the state. This could be combined with 2. if you want to always move.
Combining 6 and 2 reduces the number of colors to C+3SC. I believe that it is possible to make the initial configuration have no enhanced color at all, but it is probably messy.