acc: simplify interface using operators
* spot/twa/acc.hh, spot/twa/acc.cc: Here. Also remove some redundant functions. * spot/parseaut/parseaut.yy, spot/priv/accmap.hh, spot/tests/acc.cc, spot/tests/twagraph.cc, spot/twa/taatgba.hh, spot/twa/twaproduct.cc, spot/twaalgos/dtwasat.cc, spot/twaalgos/hoa.cc, spot/twaalgos/lbtt.cc, spot/twaalgos/ltl2tgba_fm.cc, spot/twaalgos/product.cc, spot/twaalgos/remfin.cc, spot/twaalgos/simulation.cc, spot/twaalgos/tau03opt.cc, spot/twaalgos/weight.cc, spot/twaalgos/weight.hh: Adjust. * NEWS: Mention the changes.
This commit is contained in:
parent
c39d35d068
commit
4993e80706
19 changed files with 161 additions and 154 deletions
15
NEWS
15
NEWS
|
|
@ -33,6 +33,21 @@ New in spot 1.99.6a (not yet released)
|
|||
instead of just weak SCCs. This gets rid of some corner cases
|
||||
that used to require ad hoc handling.
|
||||
|
||||
* acc_cond::acc_code's methods append_or(), append_and(), and
|
||||
shift_left() have been replaced by operators |=, &=, <<=, and for
|
||||
completeness the operators |, &, and << have been added.
|
||||
|
||||
* Several methods have been removed from the acc_cond class because
|
||||
they were simply redundant with the methods of acc_cond::mark_t,
|
||||
and more complex to use.
|
||||
|
||||
acc_cond::marks(...) -> use acc_cond::mark_t(...) directly
|
||||
acc_cond::sets(m) -> use m.sets()
|
||||
acc_cond::has(m, u) -> use m.has(u) directly
|
||||
acc_cond::cup(l, r) -> use l | r
|
||||
acc_cond::cap(l, r) -> use l & r
|
||||
acc_cond::set_minus(l, r) -> use l - r
|
||||
|
||||
Python:
|
||||
|
||||
* Iterating over the transitions leaving a state (the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue