* 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:
parent
63c62e1767
commit
317fed597b
6 changed files with 15 additions and 11 deletions
|
|
@ -156,14 +156,14 @@ namespace spot
|
|||
// Now build the "cycle" of accepting conditions.
|
||||
|
||||
bdd last = bdd_satone(all);
|
||||
all &= !last;
|
||||
all -= last;
|
||||
|
||||
acc_cycle_[bddtrue] = last;
|
||||
|
||||
while (all != bddfalse)
|
||||
{
|
||||
bdd next = bdd_satone(all);
|
||||
all &= !next;
|
||||
all -= next;
|
||||
acc_cycle_[last] = next;
|
||||
last = next;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue