Make --keep-states more useful by actually removing states.
Fixes #70. We don't modify the behavior of mask_keep_states(), because it is actually useful in some algorithm to remove states without renumbering all the other states. * src/bin/autfilt.cc: Call purge_dead_states(). * src/tgbatest/maskkeep.test: Adjust.
This commit is contained in:
parent
23bcbb5b37
commit
483212d275
2 changed files with 12 additions and 33 deletions
|
|
@ -506,7 +506,10 @@ namespace
|
||||||
// Postprocessing.
|
// Postprocessing.
|
||||||
|
|
||||||
if (!opt_keep_states.empty())
|
if (!opt_keep_states.empty())
|
||||||
|
{
|
||||||
aut = mask_keep_states(aut, opt_keep_states, opt_keep_states_initial);
|
aut = mask_keep_states(aut, opt_keep_states, opt_keep_states_initial);
|
||||||
|
aut->purge_dead_states();
|
||||||
|
}
|
||||||
if (opt_mask_acc)
|
if (opt_mask_acc)
|
||||||
aut = mask_acc_sets(aut, opt_mask_acc & aut->acc().all_sets());
|
aut = mask_acc_sets(aut, opt_mask_acc & aut->acc().all_sets());
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ EOF
|
||||||
|
|
||||||
cat >expect1 <<EOF
|
cat >expect1 <<EOF
|
||||||
HOA: v1
|
HOA: v1
|
||||||
States: 4
|
States: 1
|
||||||
Start: 0
|
Start: 0
|
||||||
AP: 0
|
AP: 0
|
||||||
acc-name: generalized-Buchi 2
|
acc-name: generalized-Buchi 2
|
||||||
|
|
@ -56,25 +56,6 @@ Acceptance: 2 Inf(0)&Inf(1)
|
||||||
properties: trans-labels explicit-labels state-acc deterministic
|
properties: trans-labels explicit-labels state-acc deterministic
|
||||||
--BODY--
|
--BODY--
|
||||||
State: 0
|
State: 0
|
||||||
State: 1
|
|
||||||
State: 2
|
|
||||||
State: 3
|
|
||||||
--END--
|
|
||||||
EOF
|
|
||||||
|
|
||||||
cat >expect2 <<EOF
|
|
||||||
HOA: v1
|
|
||||||
States: 4
|
|
||||||
Start: 1
|
|
||||||
AP: 0
|
|
||||||
acc-name: generalized-Buchi 2
|
|
||||||
Acceptance: 2 Inf(0)&Inf(1)
|
|
||||||
properties: trans-labels explicit-labels state-acc deterministic
|
|
||||||
--BODY--
|
|
||||||
State: 0
|
|
||||||
State: 1
|
|
||||||
State: 2
|
|
||||||
State: 3
|
|
||||||
--END--
|
--END--
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
@ -82,11 +63,11 @@ run 0 ../../bin/autfilt --keep-states=0 input1 -H >output
|
||||||
diff output expect1
|
diff output expect1
|
||||||
|
|
||||||
run 0 ../../bin/autfilt --keep-states=1 input1 -H >output
|
run 0 ../../bin/autfilt --keep-states=1 input1 -H >output
|
||||||
diff output expect2
|
diff output expect1
|
||||||
|
|
||||||
cat >expect3 <<EOF
|
cat >expect3 <<EOF
|
||||||
HOA: v1
|
HOA: v1
|
||||||
States: 4
|
States: 3
|
||||||
Start: 0
|
Start: 0
|
||||||
AP: 2 "a" "b"
|
AP: 2 "a" "b"
|
||||||
acc-name: generalized-Buchi 2
|
acc-name: generalized-Buchi 2
|
||||||
|
|
@ -100,27 +81,22 @@ State: 1
|
||||||
[0] 2
|
[0] 2
|
||||||
State: 2
|
State: 2
|
||||||
[1] 1
|
[1] 1
|
||||||
State: 3
|
|
||||||
--END--
|
--END--
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat >expect4 <<EOF
|
cat >expect4 <<EOF
|
||||||
HOA: v1
|
HOA: v1
|
||||||
States: 4
|
States: 2
|
||||||
Start: 1
|
Start: 0
|
||||||
AP: 2 "a" "b"
|
AP: 2 "a" "b"
|
||||||
acc-name: generalized-Buchi 2
|
acc-name: generalized-Buchi 2
|
||||||
Acceptance: 2 Inf(0)&Inf(1)
|
Acceptance: 2 Inf(0)&Inf(1)
|
||||||
properties: trans-labels explicit-labels trans-acc
|
properties: trans-labels explicit-labels state-acc deterministic
|
||||||
--BODY--
|
--BODY--
|
||||||
State: 0
|
State: 0
|
||||||
[0] 1 {0}
|
[0] 1
|
||||||
[1] 2 {1}
|
|
||||||
State: 1
|
State: 1
|
||||||
[0] 2
|
[1] 0
|
||||||
State: 2
|
|
||||||
[1] 1
|
|
||||||
State: 3
|
|
||||||
--END--
|
--END--
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue