diff --git a/src/ltltest/equals.cc b/src/ltltest/equals.cc index 62ece4878..a0574588b 100644 --- a/src/ltltest/equals.cc +++ b/src/ltltest/equals.cc @@ -30,7 +30,6 @@ #include "ltlvisit/tunabbrev.hh" #include "ltlvisit/dump.hh" #include "ltlvisit/nenoform.hh" -#include "ltlvisit/contain.hh" #include "ltlast/allnodes.hh" #include "ltlvisit/simplify.hh" #include "ltlvisit/tostring.hh" diff --git a/src/ltlvisit/contain.hh b/src/ltlvisit/contain.hh index ddfe02970..11ad987b3 100644 --- a/src/ltlvisit/contain.hh +++ b/src/ltlvisit/contain.hh @@ -1,3 +1,5 @@ +// Copyright (C) 2011 Laboratoire de Recherche et Developpement de +// l'Epita (LRDE). // Copyright (C) 2006 Laboratoire d'Informatique de Paris 6 (LIP6), // département Systèmes Répartis Coopératifs (SRC), Université Pierre // et Marie Curie. @@ -95,13 +97,20 @@ namespace spot /// year = {2003}, /// note = {Reprint of Licentiate's thesis} ///} + /// \endverbatim /// /// (The "dagged" cells in the tables are not handled here.) /// /// If \a stronger is set, additional rules are used to further /// reduce some U, R, and X usages. - /// \endverbatim + /// + /// \deprecated Use spot::ltl::ltl_simplifier instead. +#if __GNUC__ + formula* reduce_tau03(const formula* f, + bool stronger = true) __attribute__ ((deprecated)); +#else formula* reduce_tau03(const formula* f, bool stronger = true); +#endif } } diff --git a/src/tgbaalgos/ltl2tgba_fm.cc b/src/tgbaalgos/ltl2tgba_fm.cc index 6d74ecfe3..b4d94b065 100644 --- a/src/tgbaalgos/ltl2tgba_fm.cc +++ b/src/tgbaalgos/ltl2tgba_fm.cc @@ -36,7 +36,6 @@ #include #include #include "ltl2tgba_fm.hh" -#include "ltlvisit/contain.hh" #include "tgba/bddprint.hh" namespace spot diff --git a/src/tgbatest/ltl2tgba.cc b/src/tgbatest/ltl2tgba.cc index d3bcb0691..4a46dc9a1 100644 --- a/src/tgbatest/ltl2tgba.cc +++ b/src/tgbatest/ltl2tgba.cc @@ -28,7 +28,6 @@ #include #include #include -#include "ltlvisit/contain.hh" #include "ltlvisit/tostring.hh" #include "ltlvisit/apcollect.hh" #include "ltlast/allnodes.hh"