* src/sanity/style.test: Catch occurrences of "accepting condition".
* bench/emptchk/ltl-human.sh, bench/emptchk/ltl-random.sh, src/sanity/style.test, src/tgba/bdddict.cc, src/tgba/succiterconcrete.hh, src/tgba/tgbabddcoredata.hh, src/tgba/tgbareduc.cc, src/tgba/tgbareduc.hh, src/tgbaalgos/gv04.cc, src/tgbaalgos/gv04.hh, src/tgbaalgos/magic.cc, src/tgbaalgos/magic.hh, src/tgbaalgos/se05.cc, src/tgbaalgos/se05.hh, src/tgbaalgos/tau03.cc, src/tgbaalgos/tau03.hh, src/tgbaalgos/tau03opt.cc, src/tgbaalgos/tau03opt.hh, src/tgbatest/dfs.test: Replace them by "acceptance condition".
This commit is contained in:
parent
7bbe3f5573
commit
a2cbe9cab8
20 changed files with 57 additions and 40 deletions
|
|
@ -74,7 +74,7 @@ namespace spot
|
|||
/// Remove all state which not lead to an accepting cycle.
|
||||
void prune_scc();
|
||||
|
||||
/// Remove some useless accepting condition.
|
||||
/// Remove some useless acceptance condition.
|
||||
void prune_acc();
|
||||
|
||||
/// Compute the maximal SCC of the automata.
|
||||
|
|
@ -172,12 +172,12 @@ namespace spot
|
|||
bool is_terminal(const spot::state* s,
|
||||
int n = -1);
|
||||
|
||||
// Return false if the scc contains all the accepting condition.
|
||||
// Return false if the scc contains all the acceptance conditions.
|
||||
bool is_not_accepting(const spot::state* s,
|
||||
int n = -1);
|
||||
|
||||
/// If a scc maximal do not contains all the accepting condition
|
||||
/// we can remove all the accepting condition in this scc.
|
||||
/// If a scc maximal do not contains all the acceptance conditions
|
||||
/// we can remove all the acceptance conditions in this scc.
|
||||
void remove_acc(const spot::state* s);
|
||||
|
||||
/// Remove all the state which belong to the same scc that s.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue