~ubuntu-branches/ubuntu/lucid/graphviz/lucid-security

« back to all changes in this revision

Viewing changes to graphs/directed/fsm.dot

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2002-02-05 18:52:12 UTC
  • Revision ID: james.westby@ubuntu.com-20020205185212-8i04c70te00rc40y
Tags: upstream-1.7.16
ImportĀ upstreamĀ versionĀ 1.7.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
digraph finite_state_machine {
 
2
 
 
3
        node [shape = doublecircle]; LR_0 LR_3 LR_4 LR_8;
 
4
        node [shape = circle];
 
5
        rankdir=LR;
 
6
        LR_0 -> LR_2 [ label = "SS(B)" ];
 
7
        LR_0 -> LR_1 [ label = "SS(S)" ];
 
8
        LR_1 -> LR_3 [ label = "S($end)" ];
 
9
        LR_2 -> LR_6 [ label = "SS(b)" ];
 
10
        LR_2 -> LR_5 [ label = "SS(a)" ];
 
11
        LR_2 -> LR_4 [ label = "S(A)" ];
 
12
        LR_5 -> LR_7 [ label = "S(b)" ];
 
13
        LR_5 -> LR_5 [ label = "S(a)" ];
 
14
        LR_6 -> LR_6 [ label = "S(b)" ];
 
15
        LR_6 -> LR_5 [ label = "S(a)" ];
 
16
        LR_7 -> LR_8 [ label = "S(b)" ];
 
17
        LR_7 -> LR_5 [ label = "S(a)" ];
 
18
        LR_8 -> LR_6 [ label = "S(b)" ];
 
19
        LR_8 -> LR_5 [ label = "S(a)" ];
 
20
}