tgbaparse, lbttparse: do not pass an environment for acceptance sets

* src/priv/accmap.hh, src/tgbaalgos/lbtt.cc, src/tgbaalgos/lbtt.hh,
src/tgbaparse/public.hh, src/tgbaparse/tgbaparse.yy,
src/tgbatest/ltl2tgba.cc, src/tgbatest/tgbaread.cc: Do not pass any
environment parameter to parse acceptance sets.  This is not used
anymore since we moved to int-labeled acceptance sets.
This commit is contained in:
Alexandre Duret-Lutz 2014-12-10 15:10:28 +01:00
parent be57ec290a
commit e4158c21ee
7 changed files with 22 additions and 59 deletions

View file

@ -57,8 +57,7 @@ main(int argc, char** argv)
spot::ltl::environment& env(spot::ltl::default_environment::instance());
spot::tgba_parse_error_list pel;
auto a = spot::tgba_parse(argv[filename_index],
pel, dict, env, env, debug);
auto a = spot::tgba_parse(argv[filename_index], pel, dict, env, debug);
if (spot::format_tgba_parse_errors(std::cerr, argv[filename_index], pel))
return 2;