- More improvements to the dot output.
This commit is contained in:
parent
acb89922f1
commit
b349b6cef2
@ -670,7 +670,14 @@ dotSemiState ()
|
|||||||
{
|
{
|
||||||
if (sys->runs[run].protocol == INTRUDER)
|
if (sys->runs[run].protocol == INTRUDER)
|
||||||
{
|
{
|
||||||
eprintf ("i%i", run);
|
if (sys->runs[run].role == I_M)
|
||||||
|
{
|
||||||
|
eprintf ("m0");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
eprintf ("i%i", run);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -776,9 +783,15 @@ dotSemiState ()
|
|||||||
// INTRUDER run
|
// INTRUDER run
|
||||||
eprintf ("\t");
|
eprintf ("\t");
|
||||||
node (run, 0);
|
node (run, 0);
|
||||||
eprintf (" [label=\"");
|
if (sys->runs[run].role == I_M)
|
||||||
termPrint (sys->runs[run].role->nameterm);
|
{
|
||||||
eprintf ("\"];\n");
|
eprintf (" [label=\"M0\"]");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
eprintf (" [shape=point]");
|
||||||
|
}
|
||||||
|
eprintf (";\n");
|
||||||
}
|
}
|
||||||
run++;
|
run++;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user