get rid of prop_single_acc_set() and set_single_acc_set()
Fixes #64. * src/tgba/tgba.hh: Here. * src/tgbaalgos/complete.cc, src/tgbaalgos/degen.cc, src/tgbaalgos/dtgbacomp.cc, src/tgbaalgos/mask.cc, src/tgbaalgos/minimize.cc, src/tgbaalgos/remfin.cc, src/tgbaalgos/sccfilter.cc, src/tgbaalgos/simulation.cc, src/tgbaalgos/stutter.cc: Adjust.
This commit is contained in:
parent
d2f11e4075
commit
b803a0ee4d
10 changed files with 11 additions and 38 deletions
|
|
@ -429,7 +429,6 @@ namespace spot
|
|||
}
|
||||
if (num_states != a->num_states())
|
||||
a->prop_keep({true, // state_based
|
||||
true, // single_acc
|
||||
false, // inherently_weak
|
||||
false, // deterministic
|
||||
false, // stutter inv.
|
||||
|
|
@ -450,7 +449,6 @@ namespace spot
|
|||
closure(tgba_digraph_ptr&& a)
|
||||
{
|
||||
a->prop_keep({false, // state_based
|
||||
true, // single_acc
|
||||
false, // inherently_weak
|
||||
false, // deterministic
|
||||
false, // stutter inv.
|
||||
|
|
@ -518,7 +516,7 @@ namespace spot
|
|||
tgba_digraph_ptr
|
||||
closure(const const_tgba_digraph_ptr& a)
|
||||
{
|
||||
return closure(make_tgba_digraph(a, {true, true, true, true, false}));
|
||||
return closure(make_tgba_digraph(a, {true, true, true, false}));
|
||||
}
|
||||
|
||||
// The stutter check algorithm to use can be overridden via an
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue