* 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:
Alexandre Duret-Lutz 2004-11-10 12:28:47 +00:00
parent 9b4edbc387
commit a67e2d0b23
3 changed files with 12 additions and 4 deletions

View file

@ -1,3 +1,10 @@
2004-11-10 Alexandre Duret-Lutz <adl@src.lip6.fr>
* 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().
2004-11-09 Alexandre Duret-Lutz <adl@src.lip6.fr>
* src/tgbatest/Makefile.am (TESTS): Remove non-existing magic.test

View file

@ -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;
}
}

View file

@ -22,6 +22,6 @@ chmod +w udcs
'!G(ReP1 => F(gsP1))' ReP1 gsP1 >output && exit 1
../ltlgspn-srg -d dead -c -l -e2 udcs/udcs \
'!G(ReP1 => F(gsP1))' ReP1 gsP1 >output && exit 1
grep 'dead:0' output
grep 'dead:1' output && exit 1
grep ' !dead' output
grep ' dead' output && exit 1
: