dot: output marked states only for SBA

* src/tgbaalgos/dotty.cc: Do not output marked states if
an automaton has 0 acceptance set (like a monitor).
* src/tgbatest/monitor.test, src/tgbatest/dstar.test: Adjust.
This commit is contained in:
Alexandre Duret-Lutz 2015-01-20 11:35:34 +01:00
parent dd948bc1a7
commit 58b088128d
3 changed files with 6 additions and 7 deletions

View file

@ -63,13 +63,13 @@ digraph G {
rankdir=LR
I [label="", style=invis, width=0]
I -> 0
0 [label="0", peripheries=2]
0 [label="0"]
0 -> 0 [label="a & !b"]
0 -> 1 [label="!a & !b"]
0 -> 2 [label="b"]
1 [label="1", peripheries=2]
1 [label="1"]
1 -> 1 [label="1"]
2 [label="2", peripheries=2]
2 [label="2"]
2 -> 2 [label="1"]
}
EOF