dotty: Specialize for tgba_digraph_ptr
* src/tgbaalgos/dotty.cc: Specialize for tgba_digraph_ptr. * src/tgba/tgbagraph.hh, src/tgbaalgos/dupexp.cc: Copy properties by default when cloning an automaton. * src/tgbatest/det.test, src/tgbatest/dstar.test, src/tgbatest/ltl2tgba.test, src/tgbatest/monitor.test, src/tgbatest/neverclaimread.test, src/tgbatest/tgbaread.test: Adjust tests.
This commit is contained in:
parent
1d7a20b2d5
commit
77cb836e47
9 changed files with 229 additions and 108 deletions
|
|
@ -115,22 +115,28 @@ run 0 ../ltl2tgba -H -DC -XH in.hoa > out.hoa
|
|||
run 1 ../../bin/autfilt -q --are-isomorph in.hoa out.hoa
|
||||
run 0 ../../bin/autfilt -q --are-isomorph ex.hoa out.hoa
|
||||
|
||||
# FIXME: State 2 and 5 are unreachable and I'd rather
|
||||
# not show them.
|
||||
run 0 ../ltl2tgba -x -DC 'GFa & XGFb' > out.tgba
|
||||
cat >ex.tgba <<EOF
|
||||
digraph G {
|
||||
rankdir=LR
|
||||
0 [label="", style=invis, width=0]
|
||||
0 -> 1
|
||||
1 [label="0"]
|
||||
1 -> 2 [label="1"]
|
||||
2 [label="1"]
|
||||
2 -> 2 [label="1"]
|
||||
I [label="", style=invis, width=0]
|
||||
I -> 0
|
||||
0 [label="0"]
|
||||
0 -> 1 [label="1"]
|
||||
1 [label="1"]
|
||||
1 -> 1 [label="1"]
|
||||
1 -> 3 [label="!a"]
|
||||
1 -> 4 [label="!b"]
|
||||
2 [label="2", peripheries=2]
|
||||
2 -> 3 [label="!a"]
|
||||
2 -> 4 [label="!b"]
|
||||
3 [label="3", peripheries=2]
|
||||
3 -> 3 [label="!a"]
|
||||
4 [label="4", peripheries=2]
|
||||
4 -> 4 [label="!b"]
|
||||
5 [label="5", peripheries=2]
|
||||
5 -> 5 [label="1"]
|
||||
}
|
||||
EOF
|
||||
diff out.tgba ex.tgba
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue