* doc/org/upgrade2.org: Discuss get_dict().
This commit is contained in:
parent
18d7d0a644
commit
e87b271ba5
1 changed files with 67 additions and 61 deletions
|
|
@ -586,6 +586,10 @@ for (auto i: aut->succ(s))
|
|||
}
|
||||
#+END_SRC
|
||||
|
||||
- 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
|
||||
|
|
@ -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 |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue