(Created page with "<graphviz caption='1996.2.23'> digraph example { rankdir=LR; node [shape = none] ""; node [shape = circle]; A->BC [label="1/1"]; A->D [label="0/0"]; BC->BC [label="1/1"]; BC ...")
 
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
<graphviz caption='1996.2.23'>
+
<graphviz caption='1996.12'>
 
digraph example {
 
digraph example {
 
rankdir=LR;
 
rankdir=LR;
 
node [shape = none] "";
 
node [shape = none] "";
 +
node [shape = doublecircle] D,AC;
 
node [shape = circle];
 
node [shape = circle];
 
+
""-> AC;
A->BC [label="1/1"];
+
AC->B [label="0"];
A->D [label="0/0"];
+
AC->B [label="1"];
BC->BC [label="1/1"];
+
B->AC [label="0"];
BC -> A [label="0/0"];
+
B->AC [label="1"];
D -> BC[label="1/1"];
+
AC->AC [label="a"];
D -> A[label="0/1"];
+
AC->D [label="b"];
 +
D -> E [label="a"];
 +
D -> D [label="b"];
 +
E -> E[label="a"];
 +
E -> E[label="b"];
 
}
 
}
 
</graphviz>
 
</graphviz>

Latest revision as of 21:10, 22 October 2014

1996.12

1996.2.23