* 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,7 +586,11 @@ for (auto i: aut->succ(s))
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+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
|
methods of the BDD dictionary attached to a =twa=. Registering
|
||||||
the atomic proposition used by a =twa= should now be done via the
|
the atomic proposition used by a =twa= should now be done via the
|
||||||
=twa::register_ap()= or =twa::copy_ap_of()= methods. Accessing
|
=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
|
=twa::ap_vars()=. All propositions registered by an automaton are
|
||||||
automatically unregistered when the automaton is destroyed.
|
automatically unregistered when the automaton is destroyed.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
* Various renamings
|
* Various renamings
|
||||||
|
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
|
|
@ -604,7 +610,7 @@ for (auto i: aut->succ(s))
|
||||||
have been renamed.
|
have been renamed.
|
||||||
|
|
||||||
| old name | new name | comment |
|
| old name | new name | comment |
|
||||||
|-------------------------------------------------------+---------------------------------------------+----------------------------------------------|
|
|-------------------------------------------------------+---------------------------------------------+-----------------------------------------------------------|
|
||||||
| ~dstar_parse()~ | ~parse_aut()~ | single parser for all automata |
|
| ~dstar_parse()~ | ~parse_aut()~ | single parser for all automata |
|
||||||
| ~dtgba_complement()~ | ~dtwa_complement()~ | |
|
| ~dtgba_complement()~ | ~dtwa_complement()~ | |
|
||||||
| ~dupexp_bfs()~ | | deleted |
|
| ~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_condition()~ | ~ta_succ_iterator::cond()~ | |
|
||||||
| ~ta_succ_iterator::current_state()~ | ~ta_succ_iterator::dst()~ | |
|
| ~ta_succ_iterator::current_state()~ | ~ta_succ_iterator::dst()~ | |
|
||||||
| ~tgba~ | ~twa~ | |
|
| ~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::neg_acceptance_conditions()~ | | deleted |
|
||||||
| ~tgba::number_of_acceptance_conditions()~ | ~tgba::num_sets()~ | |
|
| ~tgba::number_of_acceptance_conditions()~ | ~tgba::num_sets()~ | |
|
||||||
| ~tgba::support_conditions()~ | | deleted |
|
| ~tgba::support_conditions()~ | | deleted |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue