* 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
|
|
@ -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>
|
2004-11-09 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||||
|
|
||||||
* src/tgbatest/Makefile.am (TESTS): Remove non-existing magic.test
|
* src/tgbatest/Makefile.am (TESTS): Remove non-existing magic.test
|
||||||
|
|
|
||||||
|
|
@ -302,9 +302,9 @@ main(int argc, char **argv)
|
||||||
case Magic:
|
case Magic:
|
||||||
{
|
{
|
||||||
spot::tgba_tba_proxy* d = new spot::tgba_tba_proxy(prod);
|
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 (res)
|
||||||
{
|
{
|
||||||
if (compute_counter_example)
|
if (compute_counter_example)
|
||||||
|
|
@ -331,6 +331,7 @@ main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
std::cout << "empty" << std::endl;
|
std::cout << "empty" << std::endl;
|
||||||
}
|
}
|
||||||
|
delete ec;
|
||||||
delete d;
|
delete d;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,6 @@ chmod +w udcs
|
||||||
'!G(ReP1 => F(gsP1))' ReP1 gsP1 >output && exit 1
|
'!G(ReP1 => F(gsP1))' ReP1 gsP1 >output && exit 1
|
||||||
../ltlgspn-srg -d dead -c -l -e2 udcs/udcs \
|
../ltlgspn-srg -d dead -c -l -e2 udcs/udcs \
|
||||||
'!G(ReP1 => F(gsP1))' ReP1 gsP1 >output && exit 1
|
'!G(ReP1 => F(gsP1))' ReP1 gsP1 >output && exit 1
|
||||||
grep 'dead:0' output
|
grep ' !dead' output
|
||||||
grep 'dead:1' output && exit 1
|
grep ' dead' output && exit 1
|
||||||
:
|
:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue