ltlparse: move in parsetl/, and declare in tl/parse.hh

* src/ltlparse/public.hh: Rename as...
* src/tl/parse.hh: ... this.
* src/ltlparse/: Rename as...
* src/parsetl/: ... this.
* NEWS: Mention the change.
* README, configure.ac, doc/org/tut01.org, doc/org/tut02.org,
doc/org/tut03.org, doc/org/tut10.org, src/Makefile.am,
src/bin/common_finput.cc, src/bin/common_finput.hh, src/bin/ltl2tgta.cc,
src/kripkeparse/kripkeparse.yy, src/parseaut/parseaut.yy,
src/tests/checkpsl.cc, src/tests/checkta.cc,
src/tests/complementation.cc, src/tests/consterm.cc,
src/tests/emptchk.cc, src/tests/equalsf.cc, src/tests/ikwiad.cc,
src/tests/kind.cc, src/tests/length.cc, src/tests/ltlprod.cc,
src/tests/ltlrel.cc, src/tests/randtgba.cc, src/tests/readltl.cc,
src/tests/reduc.cc, src/tests/syntimpl.cc, src/tests/tostring.cc,
src/tl/Makefile.am, src/twaalgos/lbtt.cc, wrap/python/spot_impl.i,
iface/ltsmin/modelcheck.cc: Adjust.
This commit is contained in:
Alexandre Duret-Lutz 2015-09-30 17:11:48 +02:00
parent 25b0153633
commit ae6cd92142
40 changed files with 86 additions and 90 deletions

View file

@ -69,7 +69,7 @@ exceptions.
#+BEGIN_SRC C++ :results verbatim :exports both
#include <iostream>
#include "ltlparse/public.hh"
#include "tl/parse.hh"
#include "tl/print.hh"
int main()
@ -110,7 +110,7 @@ Here is how to call the infix parser explicitly:
#+BEGIN_SRC C++ :results verbatim :exports both
#include <string>
#include <iostream>
#include "ltlparse/public.hh"
#include "tl/parse.hh"
#include "tl/print.hh"
int main()
@ -152,7 +152,7 @@ with the "fixed" formula if you wish. Here is an example:
#+BEGIN_SRC C++ :results verbatim :exports both
#include <string>
#include <iostream>
#include "ltlparse/public.hh"
#include "tl/parse.hh"
#include "tl/print.hh"
int main()
@ -193,7 +193,7 @@ of =parse_infix_psl()=.
#+BEGIN_SRC C++ :results verbatim :exports both
#include <string>
#include <iostream>
#include "ltlparse/public.hh"
#include "tl/parse.hh"
#include "tl/print.hh"
int main()
@ -237,7 +237,7 @@ For instance, let's see what happens if a PSL formulas is passed to
#+BEGIN_SRC C++ :results verbatim :exports both
#include <string>
#include <iostream>
#include "ltlparse/public.hh"
#include "tl/parse.hh"
#include "tl/print.hh"
int main()
@ -267,7 +267,7 @@ The first is to simply diagnose non-LTL formulas.
#+BEGIN_SRC C++ :results verbatim :exports code
#include <string>
#include <iostream>
#include "ltlparse/public.hh"
#include "tl/parse.hh"
#include "tl/print.hh"
int main()
@ -296,7 +296,7 @@ prepared to reject the formula any way. In our example, we are lucky
#+BEGIN_SRC C++ :results verbatim :exports both
#include <string>
#include <iostream>
#include "ltlparse/public.hh"
#include "tl/parse.hh"
#include "tl/print.hh"
#include "tl/simplify.hh"

View file

@ -80,7 +80,7 @@ destructor.
#+BEGIN_SRC C++ :results verbatim :exports both
#include <string>
#include <iostream>
#include "ltlparse/public.hh"
#include "tl/parse.hh"
#include "tl/print.hh"
#include "tl/relabel.hh"

View file

@ -201,7 +201,7 @@ save time by not exploring further).
#include <iostream>
#include "tl/formula.hh"
#include "tl/print.hh"
#include "ltlparse/public.hh"
#include "tl/parse.hh"
int main()
{
@ -249,7 +249,7 @@ in a formula:
#include <iostream>
#include "tl/formula.hh"
#include "tl/print.hh"
#include "ltlparse/public.hh"
#include "tl/parse.hh"
spot::formula xchg_fg(spot::formula in)
{

View file

@ -129,7 +129,7 @@ never claim is done via the =print_never_claim= function.
#+BEGIN_SRC C++ :results verbatim :exports both
#include <string>
#include <iostream>
#include "ltlparse/public.hh"
#include "tl/parse.hh"
#include "tl/print.hh"
#include "twaalgos/translate.hh"
#include "twaalgos/neverclaim.hh"