rename SPOT_NB_ACC to SPOT_MAX_ACCSETS

* NEWS, bin/autcross.cc, bin/autfilt.cc, bin/ltlcross.cc,
configure.ac, spot/parseaut/parseaut.yy, spot/twa/acc.cc,
spot/twa/acc.hh, tests/core/acc.cc, .gitlab-ci.yml: Here.
This commit is contained in:
Alexandre Duret-Lutz 2018-05-24 17:52:42 +02:00
parent cc2c4615d0
commit 2e165f188d
10 changed files with 33 additions and 30 deletions

View file

@ -64,8 +64,8 @@ int main()
auto m1 = spot::acc_cond::mark_t({0, 2});
auto m2 = spot::acc_cond::mark_t({0, 3});
auto m3 = spot::acc_cond::mark_t({2, 1});
auto m4 = spot::acc_cond::mark_t({0, SPOT_NB_ACC-2});
if (!(m4.min_set() == 1 && m4.max_set() == SPOT_NB_ACC-1))
auto m4 = spot::acc_cond::mark_t({0, SPOT_MAX_ACCSETS - 2});
if (!(m4.min_set() == 1 && m4.max_set() == SPOT_MAX_ACCSETS - 1))
return 1;
spot::acc_cond::mark_t m0 = {};
@ -185,7 +185,7 @@ int main()
try
{
spot::acc_cond a{SPOT_NB_ACC+1};
spot::acc_cond a{SPOT_MAX_ACCSETS + 1};
}
catch (const std::runtime_error& e)
{
@ -195,7 +195,7 @@ int main()
try
{
spot::acc_cond::mark_t m{0};
m <<= SPOT_NB_ACC + 1;
m <<= SPOT_MAX_ACCSETS + 1;
}
catch (const std::runtime_error& e)
{
@ -205,7 +205,7 @@ int main()
try
{
spot::acc_cond::mark_t m{0};
m >>= SPOT_NB_ACC + 1;
m >>= SPOT_MAX_ACCSETS + 1;
}
catch (const std::runtime_error& e)
{