acc: do not store a bdd_dict

Fixes #55.

* src/tgba/acc.hh: Do not store a bdd_dict_ptr, it is not used.
* src/tgba/tgba.hh, src/tgba/tgba.cc, src/ta/ta.hh,
src/tgba/tgbagraph.hh, src/tgbaalgos/dtgbasat.cc,
src/tgbatest/acc.cc: Adjust.
This commit is contained in:
Alexandre Duret-Lutz 2015-02-04 21:14:07 +01:00
parent 2a3c126c15
commit 856adef9a8
7 changed files with 23 additions and 30 deletions

View file

@ -339,7 +339,7 @@ namespace spot
if (num < acc_.num_sets())
{
acc_.~acc_cond();
new (&acc_) acc_cond(get_dict());
new (&acc_) acc_cond;
}
acc_.add_sets(num - acc_.num_sets());
prop_single_acc_set(num == 1);