tra2tba: Add support for Rabin like automata
* spot/twaalgos/tra2tba.cc: Support Rabin like input * tests/core/tra2tba.cc: Remove C tests * tests/core/tra2tba.test: Remove C tests * tests/python/tra2tba.py: Convert C tests to python * tests/Makefile.am: Remove C tests and add python tests
This commit is contained in:
parent
e1271bf8b3
commit
69cf3c5590
4 changed files with 185 additions and 167 deletions
551
tests/python/tra2tba.py
Normal file
551
tests/python/tra2tba.py
Normal file
|
|
@ -0,0 +1,551 @@
|
|||
import spot
|
||||
|
||||
# Test 1.
|
||||
aut = spot.automaton("""
|
||||
HOA: v1
|
||||
States: 2
|
||||
Start: 0
|
||||
AP: 2 "a" "b"
|
||||
Acceptance: 2 (Fin(0) & Inf(1))
|
||||
--BODY--
|
||||
State: 0
|
||||
[!0] 0 {1}
|
||||
[0] 1
|
||||
State: 1
|
||||
[0] 1 {0}
|
||||
--END--
|
||||
""")
|
||||
|
||||
exp = """HOA: v1
|
||||
States: 2
|
||||
Start: 0
|
||||
AP: 2 "a" "b"
|
||||
acc-name: Buchi
|
||||
Acceptance: 1 Inf(0)
|
||||
properties: trans-labels explicit-labels trans-acc deterministic
|
||||
--BODY--
|
||||
State: 0
|
||||
[!0] 0 {0}
|
||||
[0] 1
|
||||
State: 1
|
||||
[0] 1
|
||||
--END--"""
|
||||
|
||||
res = spot.tra_to_tba(aut)
|
||||
assert(res.to_str('hoa') == exp)
|
||||
|
||||
# Test 2.
|
||||
aut = spot.automaton("""
|
||||
HOA: v1
|
||||
States: 3
|
||||
Start: 0
|
||||
AP: 1 "a"
|
||||
Acceptance: 2 (Inf(1) & Fin(0))
|
||||
--BODY--
|
||||
State: 0
|
||||
[!0] 0 {0}
|
||||
[0] 1
|
||||
State: 1
|
||||
[0] 2 {}
|
||||
State: 2
|
||||
[!0] 1 {}
|
||||
[0] 2 {1}
|
||||
--END--
|
||||
EOF
|
||||
""")
|
||||
|
||||
exp = """HOA: v1
|
||||
States: 3
|
||||
Start: 0
|
||||
AP: 1 "a"
|
||||
acc-name: Buchi
|
||||
Acceptance: 1 Inf(0)
|
||||
properties: trans-labels explicit-labels trans-acc deterministic
|
||||
--BODY--
|
||||
State: 0
|
||||
[!0] 0
|
||||
[0] 1
|
||||
State: 1
|
||||
[0] 2
|
||||
State: 2
|
||||
[!0] 1
|
||||
[0] 2 {0}
|
||||
--END--"""
|
||||
|
||||
res = spot.tra_to_tba(aut)
|
||||
assert(res.to_str('hoa') == exp)
|
||||
|
||||
# Test 3.
|
||||
aut = spot.automaton("""
|
||||
HOA: v1
|
||||
States: 2
|
||||
Start: 0
|
||||
AP: 2 "a" "b"
|
||||
Acceptance: 4 (Fin(0) & Inf(1)) | (Fin(2) & Inf(3))
|
||||
--BODY--
|
||||
State: 0
|
||||
[!0] 0 {0}
|
||||
[0] 1
|
||||
State: 1
|
||||
[0] 1 {2}
|
||||
--END--
|
||||
""")
|
||||
|
||||
exp = """HOA: v1
|
||||
States: 2
|
||||
Start: 0
|
||||
AP: 2 "a" "b"
|
||||
acc-name: Buchi
|
||||
Acceptance: 1 Inf(0)
|
||||
properties: trans-labels explicit-labels state-acc deterministic
|
||||
--BODY--
|
||||
State: 0
|
||||
[!0] 0
|
||||
[0] 1
|
||||
State: 1
|
||||
[0] 1
|
||||
--END--"""
|
||||
|
||||
res = spot.tra_to_tba(aut)
|
||||
assert(res.to_str('hoa') == exp)
|
||||
|
||||
# Test 4.
|
||||
aut = spot.automaton("""
|
||||
HOA: v1
|
||||
States: 3
|
||||
Start: 0
|
||||
Acceptance: 4 (Fin(0) & Inf(1)) | (Fin(2) & Inf(3))
|
||||
AP: 2 "a" "b"
|
||||
--BODY--
|
||||
State: 0
|
||||
[0 & 1] 0 {0 2}
|
||||
[!0] 1
|
||||
[!1] 2
|
||||
State: 1
|
||||
[t] 1 {1}
|
||||
State: 2
|
||||
[t] 2 {3}
|
||||
--END--
|
||||
""")
|
||||
|
||||
exp = """HOA: v1
|
||||
States: 3
|
||||
Start: 0
|
||||
AP: 2 "a" "b"
|
||||
acc-name: Buchi
|
||||
Acceptance: 1 Inf(0)
|
||||
properties: trans-labels explicit-labels state-acc complete
|
||||
--BODY--
|
||||
State: 0
|
||||
[0&1] 0
|
||||
[!0] 1
|
||||
[!1] 2
|
||||
State: 1 {0}
|
||||
[t] 1
|
||||
State: 2 {0}
|
||||
[t] 2
|
||||
--END--"""
|
||||
|
||||
res = spot.tra_to_tba(aut)
|
||||
assert(res.to_str('hoa') == exp)
|
||||
|
||||
# Test 5.
|
||||
aut = spot.automaton("""
|
||||
HOA: v1
|
||||
States: 4
|
||||
Start: 0
|
||||
Acceptance: 6 (Fin(0) & Inf(1)) | (Fin(2) & Inf(3)) | (Fin(4) & Inf(5))
|
||||
AP: 3 "a" "b" "c"
|
||||
--BODY--
|
||||
State: 0
|
||||
[0 & 1 &2] 0 {0 2 4}
|
||||
[!0] 1
|
||||
[!1] 2
|
||||
[!2] 3
|
||||
State: 1
|
||||
[t] 1 {1}
|
||||
State: 2
|
||||
[t] 2 {3}
|
||||
State: 3
|
||||
[t] 3 {5}
|
||||
--END--
|
||||
""")
|
||||
|
||||
exp = """HOA: v1
|
||||
States: 4
|
||||
Start: 0
|
||||
AP: 3 "a" "b" "c"
|
||||
acc-name: Buchi
|
||||
Acceptance: 1 Inf(0)
|
||||
properties: trans-labels explicit-labels state-acc complete
|
||||
--BODY--
|
||||
State: 0
|
||||
[0&1&2] 0
|
||||
[!0] 1
|
||||
[!1] 2
|
||||
[!2] 3
|
||||
State: 1 {0}
|
||||
[t] 1
|
||||
State: 2 {0}
|
||||
[t] 2
|
||||
State: 3 {0}
|
||||
[t] 3
|
||||
--END--"""
|
||||
|
||||
res = spot.tra_to_tba(aut)
|
||||
assert(res.to_str('hoa') == exp)
|
||||
|
||||
# Test 6.
|
||||
aut = spot.automaton("""
|
||||
HOA: v1
|
||||
States: 2
|
||||
Start: 0
|
||||
Acceptance: 4 Fin(0)&Inf(1) | Fin(2)&Inf(3)
|
||||
AP: 2 "p3" "p2"
|
||||
--BODY--
|
||||
State: 1 "F(Gp3|GFp2)"
|
||||
[0&1] 1 {1 3 }
|
||||
[0&!1] 0 {1 3 }
|
||||
[!0&1] 1 {1 2 3 }
|
||||
[!0&!1] 0 {1 2 3 }
|
||||
State: 0 "F(Gp3|GFp2)"
|
||||
[0&1] 1 {3 }
|
||||
[0&!1] 0 {3 }
|
||||
[!0&1] 1 {2 3 }
|
||||
[!0&!1] 0 {2 3 }
|
||||
--END--
|
||||
""")
|
||||
|
||||
exp = """HOA: v1
|
||||
States: 4
|
||||
Start: 0
|
||||
AP: 2 "p3" "p2"
|
||||
acc-name: Buchi
|
||||
Acceptance: 1 Inf(0)
|
||||
properties: trans-labels explicit-labels trans-acc
|
||||
--BODY--
|
||||
State: 0
|
||||
[0&1] 1
|
||||
[0&!1] 0
|
||||
[!0&1] 1
|
||||
[!0&!1] 0
|
||||
[0&!1] 2
|
||||
State: 1
|
||||
[0&1] 1 {0}
|
||||
[0&!1] 0 {0}
|
||||
[!0&1] 1 {0}
|
||||
[!0&!1] 0 {0}
|
||||
[0&1] 3
|
||||
[0&!1] 2
|
||||
State: 2
|
||||
[0&1] 3 {0}
|
||||
[0&!1] 2 {0}
|
||||
State: 3
|
||||
[0&1] 3 {0}
|
||||
[0&!1] 2 {0}
|
||||
--END--"""
|
||||
|
||||
res = spot.tra_to_tba(aut)
|
||||
assert(res.to_str('hoa') == exp)
|
||||
|
||||
# Test 7.
|
||||
aut = spot.automaton("""
|
||||
HOA: v1
|
||||
name: "FG(a)"
|
||||
properties: deterministic
|
||||
properties: complete
|
||||
States: 1
|
||||
Start: 0
|
||||
Acceptance: 2 Fin(0)&Inf(1)
|
||||
AP: 1 "a"
|
||||
--BODY--
|
||||
State: 0 "FG(a)"
|
||||
[0] 0 {1 }
|
||||
[!0] 0 {0 1 }
|
||||
--END--
|
||||
""")
|
||||
|
||||
exp = """HOA: v1
|
||||
States: 2
|
||||
Start: 0
|
||||
AP: 1 "a"
|
||||
acc-name: Buchi
|
||||
Acceptance: 1 Inf(0)
|
||||
properties: trans-labels explicit-labels state-acc
|
||||
--BODY--
|
||||
State: 0
|
||||
[0] 0
|
||||
[!0] 0
|
||||
[0] 1
|
||||
State: 1 {0}
|
||||
[0] 1
|
||||
--END--"""
|
||||
|
||||
res = spot.tra_to_tba(aut)
|
||||
assert(res.to_str('hoa') == exp)
|
||||
|
||||
# Test 8.
|
||||
aut = spot.automaton("""
|
||||
HOA: v1
|
||||
States: 7
|
||||
Start: 0
|
||||
Acceptance: 4 Fin(0)&Inf(1) | Fin(2)&Inf(3)
|
||||
AP: 3 "p0" "p2" "p3"
|
||||
--BODY--
|
||||
State: 1 "0"
|
||||
[t] 1 {1 }
|
||||
State: 5 "1"
|
||||
[0&2] 5 {0 1 3 }
|
||||
[0&!2] 6 {0 1 3 }
|
||||
[!0&2] 3 {0 1 2 3 }
|
||||
[!0&!2] 4 {0 1 2 3 }
|
||||
State: 0 "2"
|
||||
[!0&1&2] 3 {0 1 2 }
|
||||
[(0&!1&!2|!0&1&!2)] 4 {0 1 2 }
|
||||
[(0&1|!0&!1)] 1 {0 1 2 }
|
||||
[0&!1&2] 2 {0 1 2 }
|
||||
State: 2 "3"
|
||||
[0&2] 5 {0 1 }
|
||||
[0&!2] 6 {0 1 }
|
||||
[!0&2] 3 {0 1 2 }
|
||||
[!0&!2] 4 {0 1 2 }
|
||||
State: 4 "4"
|
||||
[t] 4 {0 1 2 }
|
||||
State: 6 "5"
|
||||
[0] 6 {0 1 3 }
|
||||
[!0] 4 {0 1 2 3 }
|
||||
State: 3 "6"
|
||||
[0&2] 2 {0 1 2 }
|
||||
[!0&2] 3 {0 1 2 }
|
||||
[!2] 4 {0 1 2 }
|
||||
--END--
|
||||
""")
|
||||
|
||||
exp = """HOA: v1
|
||||
States: 8
|
||||
Start: 0
|
||||
AP: 3 "p0" "p2" "p3"
|
||||
acc-name: Buchi
|
||||
Acceptance: 1 Inf(0)
|
||||
properties: trans-labels explicit-labels trans-acc
|
||||
--BODY--
|
||||
State: 0
|
||||
[!0&1&2] 3
|
||||
[!0&1&!2 | 0&!1&!2] 4
|
||||
[!0&!1 | 0&1] 1
|
||||
[0&!1&2] 2
|
||||
State: 1
|
||||
[t] 1 {0}
|
||||
State: 2
|
||||
[0&2] 5
|
||||
[0&!2] 6
|
||||
[!0&2] 3
|
||||
[!0&!2] 4
|
||||
State: 3
|
||||
[0&2] 2
|
||||
[!0&2] 3
|
||||
[!2] 4
|
||||
State: 4
|
||||
[t] 4
|
||||
State: 5
|
||||
[0&2] 5
|
||||
[0&!2] 6
|
||||
[!0&2] 3
|
||||
[!0&!2] 4
|
||||
[0&2] 7
|
||||
State: 6
|
||||
[0] 6 {0}
|
||||
[!0] 4
|
||||
State: 7
|
||||
[0&2] 7 {0}
|
||||
--END--"""
|
||||
|
||||
res = spot.tra_to_tba(aut)
|
||||
assert(res.to_str('hoa') == exp)
|
||||
|
||||
# Test 9.
|
||||
aut = spot.automaton("""
|
||||
HOA: v1
|
||||
States: 2
|
||||
Start: 0
|
||||
AP: 3 "p0" "p4" "p1"
|
||||
Acceptance: 4 (Fin(0) & Inf(1)) | (Fin(2) & Inf(3))
|
||||
--BODY--
|
||||
State: 0
|
||||
[0&!2] 1 {0 1 3}
|
||||
[!0&!2] 0 {0 1 3}
|
||||
State: 1
|
||||
[0&!2] 1 {0 1}
|
||||
[!0&!2] 0 {0 1}
|
||||
--END--
|
||||
""")
|
||||
|
||||
exp = """HOA: v1
|
||||
States: 2
|
||||
Start: 0
|
||||
AP: 3 "p4" "p0" "p1"
|
||||
acc-name: Buchi
|
||||
Acceptance: 1 Inf(0)
|
||||
properties: trans-labels explicit-labels state-acc deterministic
|
||||
--BODY--
|
||||
State: 0 {0}
|
||||
[1&!2] 1
|
||||
[!1&!2] 0
|
||||
State: 1
|
||||
[1&!2] 1
|
||||
[!1&!2] 0
|
||||
--END--"""
|
||||
|
||||
res = spot.tra_to_tba(aut)
|
||||
assert(res.to_str('hoa') == exp)
|
||||
|
||||
# Test 10.
|
||||
aut = spot.automaton("""
|
||||
HOA: v1
|
||||
States: 2
|
||||
Start: 0
|
||||
acc-name: Rabin 1
|
||||
Acceptance: 2 Fin(0)&Inf(1)
|
||||
AP: 2 "p0" "p2"
|
||||
--BODY--
|
||||
State: 0 "0"
|
||||
[0&1] 0 {1 }
|
||||
[!0&1] 1 {1 }
|
||||
[0&!1] 0 {0 1 }
|
||||
State: 1 "1"
|
||||
[1] 1 {1 }
|
||||
--END--
|
||||
""")
|
||||
|
||||
exp = """HOA: v1
|
||||
States: 3
|
||||
Start: 0
|
||||
AP: 2 "p0" "p2"
|
||||
acc-name: Buchi
|
||||
Acceptance: 1 Inf(0)
|
||||
properties: trans-labels explicit-labels state-acc
|
||||
--BODY--
|
||||
State: 0
|
||||
[0&1] 0
|
||||
[!0&1] 1
|
||||
[0&!1] 0
|
||||
[0&1] 2
|
||||
State: 1 {0}
|
||||
[1] 1
|
||||
State: 2 {0}
|
||||
[0&1] 2
|
||||
--END--"""
|
||||
|
||||
res = spot.tra_to_tba(aut)
|
||||
assert(res.to_str('hoa') == exp)
|
||||
|
||||
# Test 11.
|
||||
aut = spot.automaton("""
|
||||
HOA: v1
|
||||
States: 2
|
||||
Start: 0
|
||||
Acceptance: 4 Fin(0)&Inf(1) | Fin(2)&Inf(3)
|
||||
AP: 2 "p2" "p0"
|
||||
--BODY--
|
||||
State: 1 "1"
|
||||
[1] 1 {1 2 3 }
|
||||
[!1] 0 {1 3 }
|
||||
State: 0 "3"
|
||||
[1] 1 {2 3 }
|
||||
[!1] 0 {3 }
|
||||
--END--
|
||||
""")
|
||||
|
||||
exp = """HOA: v1
|
||||
States: 2
|
||||
Start: 0
|
||||
AP: 2 "p0" "p2"
|
||||
acc-name: Buchi
|
||||
Acceptance: 1 Inf(0)
|
||||
properties: trans-labels explicit-labels trans-acc complete
|
||||
properties: deterministic
|
||||
--BODY--
|
||||
State: 0
|
||||
[0] 1
|
||||
[!0] 0 {0}
|
||||
State: 1
|
||||
[0] 1 {0}
|
||||
[!0] 0 {0}
|
||||
--END--"""
|
||||
|
||||
res = spot.tra_to_tba(aut)
|
||||
assert(res.to_str('hoa') == exp)
|
||||
|
||||
# Test 12.
|
||||
aut = spot.automaton("""
|
||||
HOA: v1
|
||||
properties: deterministic
|
||||
properties: complete
|
||||
States: 2
|
||||
Start: 0
|
||||
Acceptance: 3 Fin(0) | Fin(1)&Inf(2)
|
||||
AP: 2 "p2" "p0"
|
||||
--BODY--
|
||||
State: 1 "1"
|
||||
[1] 1 {0 1 2}
|
||||
[!1] 0 {0 2}
|
||||
State: 0 "3"
|
||||
[1] 1 {1 2}
|
||||
[!1] 0 {2}
|
||||
--END--
|
||||
""")
|
||||
|
||||
exp = """HOA: v1
|
||||
States: 4
|
||||
Start: 0
|
||||
AP: 2 "p0" "p2"
|
||||
acc-name: Buchi
|
||||
Acceptance: 1 Inf(0)
|
||||
properties: trans-labels explicit-labels state-acc
|
||||
--BODY--
|
||||
State: 0
|
||||
[0] 1
|
||||
[!0] 0
|
||||
[!0] 2
|
||||
[!0] 3
|
||||
State: 1
|
||||
[0] 1
|
||||
[!0] 0
|
||||
[!0] 3
|
||||
State: 2
|
||||
[!0] 2
|
||||
State: 3 {0}
|
||||
[!0] 3
|
||||
--END--"""
|
||||
|
||||
res = spot.tra_to_tba(aut)
|
||||
assert(res.to_str('hoa') == exp)
|
||||
|
||||
# Test 13.
|
||||
aut = spot.automaton("""
|
||||
HOA: v1
|
||||
properties: deterministic
|
||||
properties: complete
|
||||
States: 2
|
||||
Start: 0
|
||||
Acceptance: 3 Inf(0) | Fin(1)&Inf(2)
|
||||
AP: 2 "p3" "p2"
|
||||
--BODY--
|
||||
State: 1 "F(Gp3|GFp2)"
|
||||
[0&1] 1 {0 2}
|
||||
[0&!1] 0 {0}
|
||||
[!0&1] 1 {0 1 2}
|
||||
[!0&!1] 0 {0 1 2}
|
||||
State: 0 "F(Gp3|GFp2)"
|
||||
[0&1] 1 {2}
|
||||
[0&!1] 0 {0}
|
||||
[!0&1] 1 {}
|
||||
[!0&!1] 0 {2}
|
||||
--END--
|
||||
""")
|
||||
|
||||
res = spot.tra_to_tba(aut)
|
||||
tba = spot.tgba_determinize(res)
|
||||
a = spot.dtwa_complement(aut).intersects(tba)
|
||||
b = spot.dtwa_complement(tba).intersects(aut)
|
||||
assert(a == b)
|
||||
Loading…
Add table
Add a link
Reference in a new issue