* iface/gspn/ltlgspn.cc (main): Adjust to recent changes to
src/tgbaalgos/magic.cc, call explicit_magic_search() instead of building a spot::magic_search. * iface/gspn/udcseltl.test: Adjust to new output of print_tgba_run().
This commit is contained in:
parent
9b4edbc387
commit
a67e2d0b23
3 changed files with 12 additions and 4 deletions
|
|
@ -302,9 +302,9 @@ main(int argc, char **argv)
|
|||
case Magic:
|
||||
{
|
||||
spot::tgba_tba_proxy* d = new spot::tgba_tba_proxy(prod);
|
||||
spot::magic_search ms(d);
|
||||
spot::emptiness_check* ec = spot::explicit_magic_search(d);
|
||||
|
||||
spot::emptiness_check_result* res = ms.check();
|
||||
spot::emptiness_check_result* res = ec->check();
|
||||
if (res)
|
||||
{
|
||||
if (compute_counter_example)
|
||||
|
|
@ -331,6 +331,7 @@ main(int argc, char **argv)
|
|||
{
|
||||
std::cout << "empty" << std::endl;
|
||||
}
|
||||
delete ec;
|
||||
delete d;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue