* src/tgbaalgos/gtec/gtec.hh, src/tgbaalgos/gtec/gtec.cc
(couvreur99_check_shy::couvreur99_check_shy): Add the group option, and redefine todo as a list so it can be iterated over. * src/tgbatest/ltl2tgba.cc, src/tgbatest/randtgba.cc: Introduce couvreur99_shy- (for group=false) in addition to couvreur99_shy (for group=true). * iface/gspn/ssp.cc (couvreur99_check_ssp_shy_semi, couvreur99_check_ssp_shy): Use group=true;
This commit is contained in:
parent
8b8257b157
commit
9782b822f0
6 changed files with 72 additions and 14 deletions
|
|
@ -59,6 +59,12 @@ couvreur99_shy_cons(const spot::tgba* a)
|
|||
return new spot::couvreur99_check_shy(a);
|
||||
}
|
||||
|
||||
spot::emptiness_check*
|
||||
couvreur99_shy_minus_cons(const spot::tgba* a)
|
||||
{
|
||||
return new spot::couvreur99_check_shy(a, false);
|
||||
}
|
||||
|
||||
spot::emptiness_check*
|
||||
bsh_ms_cons(const spot::tgba* a)
|
||||
{
|
||||
|
|
@ -82,6 +88,7 @@ struct ec_algo
|
|||
ec_algo ec_algos[] =
|
||||
{
|
||||
{ "couvreur99", couvreur99_cons, 0, -1U, true },
|
||||
{ "couvreur99_shy-", couvreur99_shy_minus_cons, 0, -1U, true },
|
||||
{ "couvreur99_shy", couvreur99_shy_cons, 0, -1U, true },
|
||||
{ "explicit_magic_search", spot::explicit_magic_search, 0, 1, true },
|
||||
{ "bit_state_hashing_magic_search",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue