Mark reduce_tau03() as deprecated.

* src/ltlvisit/contain.hh (reduce_tau03): Mark as deprecated.
* src/tgbaalgos/ltl2tgba_fm.cc, src/tgbatest/ltl2tgba.cc,
src/ltltest/equals.cc: Do not include ltlvisit/contain.hh, since
it's not used.
This commit is contained in:
Alexandre Duret-Lutz 2011-08-25 12:30:55 +02:00
parent 5c1729d6e4
commit b89f86edcf
4 changed files with 10 additions and 4 deletions

View file

@ -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
}
}