<Chapter><Heading>From Networks to Automata</Heading>
It is known that the language of all encoded permutations of a
TPN is rational, and thus is it indeed possible to turn a TPN into
an automaton. The idea is to inspect all dispositions of tokens
within the TPN and find equivalence classes of these dispositions,
for more details consult <Cite Key="PermGenTPGraph" />.
Adding a constraint, which limits the number of tokens at any time
within the TPN, is also considered in this chapter. <P/>
The algorithms featured in this chapter do not return the minimal automata
representing the input TPN as they are exactly visualising the equivalence classes
of the dispositions of the tokens in the TPN. The automaton can be minimalised
by choice, as it simplifies future computations involving the automaton also
is makes the automata more legible.
<Section><Heading>Functions</Heading>
<ManSection>
<Func Name="GraphToAut" Arg="g,innode,outnode"/>
<Returns>An automaton representing the input TPN.</Returns>
<Description>
<C>GraphToAut</C> turns an array represented directed graph, with a distinct input node and a distinct output node, into
the corresponding automaton, that accepts the language build by the resulting rank encoded permutations of the
directed graph.
<Example><![CDATA[
gap> x:=Seqstacks(2,2);
[ [ 2 ], [ 3, 4 ], [ 2 ], [ 5, 6 ], [ 4 ], [ ] ]
gap> aut:=GraphToAut(x,1,6);
< epsilon automaton on 4 letters with 64 states >
gap> aut:=MinimalAutomaton(aut);
< deterministic automaton on 3 letters with 3 states >
gap> Display(aut);
| 1 2 3
--------------
a | 1 3 1
b | 3 3 3
c | 2 2 2
Initial state: [ 1 ]
Accepting state: [ 1 ]
gap> ]]></Example>
<Alt Only="LaTeX">
The minimal automaton corresponding to <C>Seqstacks(2,2)</C> is:
\begin{figure}[H] \begin{center} \leavevmode \includegraphics[scale=0.75]{img/ss22aut.jpg} \end{center} \end{figure}
</Alt>
<Alt Only="HTML">
The minimal automaton corresponding to <C>Seqstacks(2,2)</C> is:
<br><center><img src="img/ss22aut.jpg" WIDTH=158 HEIGHT=243 ></center><br>
</Alt>
<Example><![CDATA[
gap> x:=Parstacks(2,2);
[ [ 2, 4 ], [ 3, 6 ], [ 2 ], [ 5, 6 ], [ 4 ], [ ] ]
gap> aut:=GraphToAut(x,1,6);
< epsilon automaton on 5 letters with 66 states >
gap> aut:=MinimalAutomaton(aut);
< deterministic automaton on 4 letters with 9 states >
gap> Display(aut);
| 1 2 3 4 5 6 7 8 9
--------------------------------
a | 1 2 1 3 2 2 6 6 3
b | 3 2 3 3 4 3 6 9 3
c | 9 2 9 4 6 6 4 9 9
d | 8 2 8 7 5 5 7 8 8
Initial state: [ 1 ]
Accepting state: [ 1 ]
gap> ]]></Example>
<Alt Only="LaTeX">
The rank encoded permutations of <C>Parstacks(2,2)</C> are accepted by the following automaton:
\begin{figure}[H] \begin{center} \leavevmode \includegraphics[scale=0.75]{img/ps22aut.jpg} \end{center} \end{figure}
</Alt>
<Alt Only="HTML">
The rank encoded permutations of <C>Parstacks(2,2)</C> are accepted by the following automaton:
<br><center><img src="img/ps22aut.jpg" WIDTH=537 HEIGHT=542 ></center><br>
</Alt>
<Example><![CDATA[
gap> x:=BufferAndStack(3,2);
[ [ 2 .. 4 ], [ 5 ], [ 5 ], [ 5 ], [ 6, 7 ], [ 5 ], [ ] ]
gap> aut:=GraphToAut(x,1,7);
< epsilon automaton on 5 letters with 460 states >
gap> aut:=MinimalAutomaton(aut);
< deterministic automaton on 4 letters with 4 states >
gap> Display(aut);
| 1 2 3 4
-----------------
a | 1 4 1 3
b | 3 4 3 3
c | 4 4 4 4
d | 2 2 2 2
Initial state: [ 1 ]
Accepting state: [ 1 ]
gap> ]]></Example>
<Alt Only="LaTeX">
The following automaton represents the language of rank encoded permutations that are output by <C>BufferAndStack(3,2)</C>:
\begin{figure}[H] \begin{center} \leavevmode \includegraphics[scale=0.75]{img/bs32aut.jpg} \end{center} \end{figure}
</Alt>
<Alt Only="HTML">
The following automaton represents the language of rank encoded permutations that are output by <C>BufferAndStack(3,2)</C>:
<br><center><img src="img/bs32aut.jpg" WIDTH=164 HEIGHT=381 ></center><br>
</Alt>
The input TPN here is the first network described in Chapter <Ref Chap="tpn" Style="Number"/>.
<Alt Only="LaTeX">
The language of rank encoded permutations of this token passing network is accepted by the following automaton:
\begin{figure}[H] \begin{center} \leavevmode \includegraphics[scale=0.75]{img/hexaut.jpg} \end{center} \end{figure}
</Alt>
<Alt Only="HTML">
The language of rank encoded permutations of this token passing network is accepted by the following automaton:
<br><center><img src="img/hexaut.jpg" WIDTH=459 HEIGHT=346 ></center><br>
</Alt>
</Description>
</ManSection>
<ManSection>
<Func Name="ConstrainedGraphToAut" Arg="g,innode,outnode,capacity"/>
<Returns>An automaton representing the input TPN with bounded capacity.</Returns>
<Description>
<C>ConstrainedGraphToAut</C> builds an epsilon automaton based on the same idea as <C>GraphToAut</C>,
so it takes a list representation of a directed graph, a designated input node and a distinct output node,
but additionally there is the constraint that there can be at most <C>capacity</C> tokens in the graph,
at any time.
<Example><![CDATA[
gap> x:=Seqstacks(2,2);
[ [ 2 ], [ 3, 4 ], [ 2 ], [ 5, 6 ], [ 4 ], [ ] ]
gap> aut:=ConstrainedGraphToAut(x,1,6,2);
< epsilon automaton on 6 letters with 21 states >
gap> aut:=MinimalAutomaton(aut);
< deterministic automaton on 5 letters with 3 states >
gap> Display(aut);
| 1 2 3
--------------
a | 1 2 1
b | 3 2 3
c | 2 2 2
d | 2 2 2
e | 2 2 2
Initial state: [ 1 ]
Accepting state: [ 1 ]
gap> ]]></Example>
<Alt Only="LaTeX">
The rank encoded permutations of <C>Seqstacks(2,2)</C>, where at any time there are at most 2 tokens within the network, are accepted by
the following automaton:
\begin{figure}[H] \begin{center} \leavevmode \includegraphics[scale=0.75]{img/ss22c2aut.jpg} \end{center} \end{figure}
</Alt>
<Alt Only="HTML">
The rank encoded permutations of <C>Seqstacks(2,2)</C>, where at any time there are at most 2 tokens within the network, are accepted by
the following automaton:
<br><center><img src="img/ss22c2aut.jpg" WIDTH=150 HEIGHT=289 ></center><br>
</Alt>
<Example><![CDATA[
gap> x:=BufferAndStack(3,2);
[ [ 2 .. 4 ], [ 5 ], [ 5 ], [ 5 ], [ 6, 7 ], [ 5 ], [ ] ]
gap> aut:=ConstrainedGraphToAut(x,1,6,3);
< epsilon automaton on 7 letters with 112 states >
gap> aut:=MinimalAutomaton(aut);
< deterministic automaton on 6 letters with 4 states >
gap> Display(aut);
| 1 2 3 4
-----------------
a | 1 2 1 3
b | 3 2 3 3
c | 4 2 4 4
d | 2 2 2 2
e | 2 2 2 2
f | 2 2 2 2
Initial state: [ 1 ]
Accepting state: [ 1 ]
gap> ]]></Example>
<Alt Only="LaTeX">
The automaton corresponding to <C>BufferAndStack(3,2)</C> with limited capacity of 3 tokens is:
\begin{figure}[H] \begin{center} \leavevmode \includegraphics[scale=0.75]{img/bs32c3aut.jpg} \end{center} \end{figure}
</Alt>
<Alt Only="HTML">
The automaton corresponding to <C>BufferAndStack(3,2)</C> with limited capacity of 3 tokens is:
<br><center><img src="img/bs32c3aut.jpg" WIDTH=198 HEIGHT=421 ></center><br>
</Alt>
<Example><![CDATA[
gap> x:=[[2,3],[4],[5],[3,6],[6],[]];
[ [ 2, 3 ], [ 4 ], [ 5 ], [ 3, 6 ], [ 6 ], [ ] ]
gap> aut:=ConstrainedGraphToAut(x,1,6,3);
< epsilon automaton on 6 letters with 48 states >
gap> aut:=MinimalAutomaton(aut);
< deterministic automaton on 5 letters with 8 states >
gap> Display(aut);
| 1 2 3 4 5 6 7 8
-----------------------------
a | 1 3 1 4 6 1 6 1
b | 3 8 3 4 4 6 6 6
c | 2 2 2 4 5 5 7 7
d | 4 4 4 4 4 4 4 4
e | 4 4 4 4 4 4 4 4
Initial state: [ 1 ]
Accepting state: [ 1 ]
gap> ]]></Example>
<Alt Only="LaTeX">
The automaton that accepts the language of rank encoded permutations of the token passing network, from Chapter <Ref Chap="tpn" Style="Number"/>,
with at most 3 tokens in the network at anytime, is:
\begin{figure}[H] \begin{center} \leavevmode \includegraphics[scale=0.75]{img/hexc3aut.jpg} \end{center} \end{figure}
</Alt>
<Alt Only="HTML">
The automaton that accepts the language of rank encoded permutations of the token passing network, from Chapter <Ref Chap="tpn" Style="Number"/>,
with at most 3 tokens in the network at anytime, is:
<br><center><img src="img/hexc3aut.jpg" WIDTH=570 HEIGHT=440 ></center><br>
</Alt>
</Description>
</ManSection>
</Section>
</Chapter>
¤ Dauer der Verarbeitung: 0.29 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.