Replace reference to RATEXP in the parser, by reference to SERE.

* src/ltlparse/ltlparse.yy: Cleanup the names used in the grammar.
* src/ltlparse/public.hh (parse_ratexp): Rename as...
(parse_sere): ... this.
* src/ltltest/consterm.cc: Adjust call to parse_ratexp().
This commit is contained in:
Alexandre Duret-Lutz 2011-12-05 19:14:03 +01:00
parent 3d183d68c8
commit fa44383efb
3 changed files with 59 additions and 59 deletions

View file

@ -1,5 +1,5 @@
// Copyright (C) 2010 Laboratoire de Recherche et Developement de
// l'Epita (LRDE).
// Copyright (C) 2010, 2011 Laboratoire de Recherche et Developement
// de l'Epita (LRDE).
//
// This file is part of Spot, a model checking library.
//
@ -38,7 +38,7 @@ main(int argc, char **argv)
syntax(argv[0]);
spot::ltl::parse_error_list p1;
spot::ltl::formula* f1 = spot::ltl::parse_ratexp(argv[1], p1);
spot::ltl::formula* f1 = spot::ltl::parse_sere(argv[1], p1);
if (spot::ltl::format_parse_errors(std::cerr, argv[1], p1))
return 2;