rename two confusing methods of emptiness_check_instantiator

* spot/twaalgos/emptiness.hh (emptiness_check_instantiator): rename
min_acceptance_conditions and max_acceptance_conditions to
min_sets and max_sets.
* spot/twaalgos/emptiness.cc, python/ajax/spotcgi.in,
tests/core/ikwiad.cc, tests/core/emptchk.cc, tests/core/randtgba.cc:
Adjust.
* doc/org/upgrade2.org, NEWS: Mention the change.
This commit is contained in:
Alexandre Duret-Lutz 2016-03-03 18:16:25 +01:00
parent cf79cefd9a
commit ad08a585af
8 changed files with 76 additions and 70 deletions

View file

@ -132,7 +132,7 @@ main(int argc, char** argv)
auto a = aut[j];
std::cout << "** Testing aut[" << j << "] using " << algo << '\n';
unsigned n_acc = a->acc().num_sets();
unsigned n_max = i->max_acceptance_conditions();
unsigned n_max = i->max_sets();
if (n_max < n_acc)
{
std::cout << "Skipping because automaton has " << n_acc
@ -140,7 +140,7 @@ main(int argc, char** argv)
<< " accepts at most " << n_max << ".\n";
continue;
}
unsigned n_min = i->min_acceptance_conditions();
unsigned n_min = i->min_sets();
if (n_min > n_acc)
{
std::cout << "Skipping because automaton has " << n_acc