* python/spot/impl.i: Add bindings for tra2tba * spot/twaalgos/Makefile.am: Record tra2tba.cc, tra2tba.hh * spot/twaalgos/tra2tba.cc: Implement transformation of TRA to TBA * spot/twaalgos/tra2tba.hh: Introduce declaration of tra_to_tba * tests/Makefile.am: Record tra2tba tests * tests/core/tra2tba.cc: Add driver for tests * tests/core/tra2tba.test: Add tests of tra2tba transformation
509 lines
7.1 KiB
Bash
Executable file
509 lines
7.1 KiB
Bash
Executable file
#!/bin/sh
|
|
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2017 Laboratoire de Recherche et Développement
|
|
# de l'Epita (LRDE).
|
|
#
|
|
# This file is part of Spot, a model checking library.
|
|
#
|
|
# Spot is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Spot is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
# License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
. ./defs
|
|
|
|
set -e
|
|
|
|
cat >test1.hoa <<EOF
|
|
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--
|
|
EOF
|
|
|
|
cat >out.exp << EOF
|
|
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--
|
|
EOF
|
|
|
|
run 0 ../tra2tba test1.hoa > out.hoa
|
|
diff out.hoa out.exp
|
|
|
|
cat >test2.hoa <<EOF
|
|
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
|
|
|
|
cat >out.exp << EOF
|
|
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--
|
|
EOF
|
|
|
|
run 0 ../tra2tba test2.hoa > out.hoa
|
|
diff out.hoa out.exp
|
|
|
|
cat >test3.hoa <<EOF
|
|
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--
|
|
EOF
|
|
|
|
cat >out.exp << EOF
|
|
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--
|
|
EOF
|
|
|
|
run 0 ../tra2tba test3.hoa > out.hoa
|
|
diff out.hoa out.exp
|
|
|
|
cat >test4.hoa <<EOF
|
|
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--
|
|
EOF
|
|
|
|
cat >out.exp << EOF
|
|
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--
|
|
EOF
|
|
|
|
run 0 ../tra2tba test4.hoa > out.hoa
|
|
diff out.hoa out.exp
|
|
|
|
cat >test5.hoa <<EOF
|
|
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--
|
|
EOF
|
|
|
|
cat >out.exp << EOF
|
|
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--
|
|
EOF
|
|
|
|
run 0 ../tra2tba test5.hoa > out.hoa
|
|
diff out.hoa out.exp
|
|
|
|
cat >test6.hoa <<EOF
|
|
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--
|
|
EOF
|
|
|
|
cat >out.exp << EOF
|
|
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--
|
|
EOF
|
|
|
|
run 0 ../tra2tba test6.hoa > out.hoa
|
|
diff out.hoa out.exp
|
|
|
|
cat >test7.hoa <<EOF
|
|
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--
|
|
EOF
|
|
|
|
cat >out.exp << EOF
|
|
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--
|
|
EOF
|
|
|
|
run 0 ../tra2tba test7.hoa > out.hoa
|
|
diff out.hoa out.exp
|
|
|
|
cat >test8.hoa <<EOF
|
|
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--
|
|
EOF
|
|
|
|
cat >out.exp << EOF
|
|
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--
|
|
EOF
|
|
|
|
run 0 ../tra2tba test8.hoa > out.hoa
|
|
diff out.hoa out.exp
|
|
|
|
cat >test9.hoa <<EOF
|
|
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--
|
|
EOF
|
|
|
|
cat >out.exp << EOF
|
|
HOA: v1
|
|
States: 2
|
|
Start: 0
|
|
AP: 3 "p0" "p4" "p1"
|
|
acc-name: Buchi
|
|
Acceptance: 1 Inf(0)
|
|
properties: trans-labels explicit-labels state-acc deterministic
|
|
--BODY--
|
|
State: 0 {0}
|
|
[0&!2] 1
|
|
[!0&!2] 0
|
|
State: 1
|
|
[0&!2] 1
|
|
[!0&!2] 0
|
|
--END--
|
|
EOF
|
|
|
|
run 0 ../tra2tba test9.hoa > out.hoa
|
|
diff out.hoa out.exp
|
|
|
|
cat >test10.hoa <<EOF
|
|
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--
|
|
EOF
|
|
|
|
cat >out.exp << EOF
|
|
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--
|
|
EOF
|
|
|
|
run 0 ../tra2tba test10.hoa > out.hoa
|
|
diff out.hoa out.exp
|
|
|
|
cat >test11.hoa <<EOF
|
|
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--
|
|
EOF
|
|
|
|
cat >out.exp << EOF
|
|
HOA: v1
|
|
States: 2
|
|
Start: 0
|
|
AP: 2 "p2" "p0"
|
|
acc-name: Buchi
|
|
Acceptance: 1 Inf(0)
|
|
properties: trans-labels explicit-labels trans-acc complete
|
|
properties: deterministic
|
|
--BODY--
|
|
State: 0
|
|
[1] 1
|
|
[!1] 0 {0}
|
|
State: 1
|
|
[1] 1 {0}
|
|
[!1] 0 {0}
|
|
--END--
|
|
EOF
|
|
|
|
run 0 ../tra2tba test11.hoa > out.hoa
|
|
diff out.hoa out.exp
|