* src/ltltest/genltl.cc (GF_n): Really use "op".

This commit is contained in:
Alexandre Duret-Lutz 2011-03-05 08:58:40 +01:00
parent 0792fb741d
commit 2c5bae3d37
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2011-03-05 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/ltltest/genltl.cc (GF_n): Really use "op".
2011-03-04 Alexandre Duret-Lutz <adl@lrde.epita.fr> 2011-03-04 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* wrap/python/ajax/spot.in: Use the degeneralized automaton if * wrap/python/ajax/spot.in: Use the degeneralized automaton if

View file

@ -201,7 +201,7 @@ formula* GF_n(std::string name, int n, bool conj = true)
env.require(p.str()))); env.require(p.str())));
if (result) if (result)
result = multop::instance(multop::And, f, result); result = multop::instance(op, f, result);
else else
result = f; result = f;
} }