* doc/org/upgrade2.org: Discuss get_dict().

This commit is contained in:
Alexandre Duret-Lutz 2016-03-03 16:46:58 +01:00
parent 18d7d0a644
commit e87b271ba5

View file

@ -586,7 +586,11 @@ for (auto i: aut->succ(s))
}
#+END_SRC
- There should now be very few cases where it is necessary to call
- Each =twa= now has a BDD dictionnary, so the =get_dict()= method is
implemented once for all in =twa=, and should not be implemented
anymore in sub-classes.
- There should now be very few cases where it is necessary to call
methods of the BDD dictionary attached to a =twa=. Registering
the atomic proposition used by a =twa= should now be done via the
=twa::register_ap()= or =twa::copy_ap_of()= methods. Accessing
@ -594,6 +598,8 @@ for (auto i: aut->succ(s))
=twa::ap_vars()=. All propositions registered by an automaton are
automatically unregistered when the automaton is destroyed.
* Various renamings
:PROPERTIES:
@ -604,7 +610,7 @@ for (auto i: aut->succ(s))
have been renamed.
| old name | new name | comment |
|-------------------------------------------------------+---------------------------------------------+----------------------------------------------|
|-------------------------------------------------------+---------------------------------------------+-----------------------------------------------------------|
| ~dstar_parse()~ | ~parse_aut()~ | single parser for all automata |
| ~dtgba_complement()~ | ~dtwa_complement()~ | |
| ~dupexp_bfs()~ | | deleted |
@ -640,7 +646,7 @@ for (auto i: aut->succ(s))
| ~ta_succ_iterator::current_condition()~ | ~ta_succ_iterator::cond()~ | |
| ~ta_succ_iterator::current_state()~ | ~ta_succ_iterator::dst()~ | |
| ~tgba~ | ~twa~ | |
| ~tgba::all_acceptance_conditions()~ | | use ~tgba::acc().is_accepting()~ instead |
| ~tgba::all_acceptance_conditions()~ | | use ~tgba::acc().accepting()~ or ~tgba::acc().all_sets()~ |
| ~tgba::neg_acceptance_conditions()~ | | deleted |
| ~tgba::number_of_acceptance_conditions()~ | ~tgba::num_sets()~ | |
| ~tgba::support_conditions()~ | | deleted |