* src/tgba/succiterconcrete.cc, src/tgba/tgbaexplicit.cc,

src/tgba/tgbatba.cc, src/tgbaalgos/lbtt.cc: Use `-' instead of `& !'
between two BDDs.  That's one less call to BuDDy.
This commit is contained in:
Alexandre Duret-Lutz 2003-08-10 13:09:50 +00:00
parent 63c62e1767
commit 317fed597b
6 changed files with 15 additions and 11 deletions

View file

@ -151,7 +151,7 @@ namespace spot
void
tgba_explicit::add_neg_condition(transition* t, ltl::formula* f)
{
t->condition &= ! get_condition(f);
t->condition -= get_condition(f);
}
void