Fixes #203. * spot/twaalgos/langmap.hh (highlight_languages): Simplify the interface by only taking the automaton to color. * spot/twaalgos/langmap.cc (highlight_languages): Only introduce color for states that have a non-unique language. * tests/core/highlightstate.test: Update and add more tests. * tests/python/langmap.py: Keep the tests simple. * bin/autfilt.cc: Adjust usage and help string.
115 lines
2 KiB
Bash
Executable file
115 lines
2 KiB
Bash
Executable file
#!/bin/sh
|
|
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2016, 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 >aut.hoa <<'EOF'
|
|
HOA: v1
|
|
States: 4
|
|
properties: implicit-labels trans-labels no-univ-branch deterministic complete
|
|
acc-name: Rabin 2
|
|
Acceptance: 4 (Fin(0)&Inf(1))|(Fin(2)&Inf(3))
|
|
Start: 0
|
|
AP: 2 "p0" "p1"
|
|
--BODY--
|
|
State: 0 {0}
|
|
1
|
|
0
|
|
3
|
|
2
|
|
State: 1 {1}
|
|
1
|
|
0
|
|
3
|
|
2
|
|
State: 2 {0 3}
|
|
1
|
|
0
|
|
3
|
|
2
|
|
State: 3 {1 3}
|
|
1
|
|
0
|
|
3
|
|
2
|
|
--END--
|
|
HOA: v1
|
|
name: "Fb & GF((a & Xb) | (!a & X!b))"
|
|
States: 5
|
|
Start: 0
|
|
AP: 2 "b" "a"
|
|
acc-name: Rabin 1
|
|
Acceptance: 2 Fin(0) & Inf(1)
|
|
properties: trans-labels explicit-labels trans-acc complete
|
|
properties: deterministic
|
|
--BODY--
|
|
State: 0
|
|
[!0&!1] 0
|
|
[0] 1
|
|
[!0&1] 2
|
|
State: 1
|
|
[!1] 3
|
|
[1] 4
|
|
State: 2
|
|
[!0&!1] 0 {0}
|
|
[!0&1] 2 {0}
|
|
[0&!1] 3
|
|
[0&1] 4
|
|
State: 3
|
|
[!0] 1 {1}
|
|
[0&!1] 3
|
|
[0&1] 4
|
|
State: 4
|
|
[0] 1 {1}
|
|
[!0&!1] 3
|
|
[!0&1] 4
|
|
--END--
|
|
HOA: v1
|
|
name: "X(a & FGb)"
|
|
States: 4
|
|
Start: 0
|
|
AP: 2 "a" "b"
|
|
acc-name: Rabin 1
|
|
Acceptance: 2 Fin(0) & Inf(1)
|
|
properties: trans-labels explicit-labels trans-acc deterministic
|
|
--BODY--
|
|
State: 0
|
|
[t] 1
|
|
State: 1
|
|
[0&!1] 2
|
|
[0&1] 3
|
|
State: 2
|
|
[!1] 2
|
|
[1] 3
|
|
State: 3
|
|
[!1] 2 {0}
|
|
[1] 3 {1}
|
|
--END--
|
|
EOF
|
|
|
|
cat >expected << 'EOF'
|
|
spot.highlight.states: 0 0 1 0 2 0 3 0
|
|
spot.highlight.states: 0 0 1 1 2 0 3 1 4 1
|
|
spot.highlight.states: 2 0 3 0
|
|
EOF
|
|
|
|
autfilt aut.hoa --highlight-languages -H1.1 | grep spot.highlight.states >res
|
|
diff expected res
|