<!--===============================================-->
<!--  tm12.xml                                     -->
<!--  The interpreter of the Turing machine        -->
<!--===============================================-->
<!-- Example of the program for the Turing machine -->
<!-- Replacement of each unit by two               -->
<!--===============================================-->

<!DOCTYPE TM SYSTEM "tm.dtd">

<TM>

<Instruction CurrentState="A" CurrentSymbol="b" NextSymbol="b" NextState="Z" Move="R">
<Instruction CurrentState="A" CurrentSymbol="1" NextSymbol="2" NextState="A" Move="R">
</Instruction>
</Instruction>

<State>A</State>

<TapeLeft>
<Node><Square>b</Square>
<Node><Square>b</Square>
<End/>
</Node>
</Node>
</TapeLeft>

<Symbol>1</Symbol>

<TapeRight>
<Node><Square>1</Square>
<Node><Square>1</Square>
<Node><Square>1</Square>
<Node><Square>1</Square>
<End/>
</Node>
</Node>
</Node>
</Node>
</TapeRight>

</TM>