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

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

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

View file

@ -36,7 +36,6 @@
#include <cassert>
#include <memory>
#include "ltl2tgba_fm.hh"
#include "ltlvisit/contain.hh"
#include "tgba/bddprint.hh"
namespace spot

View file

@ -28,7 +28,6 @@
#include <fstream>
#include <string>
#include <cstdlib>
#include "ltlvisit/contain.hh"
#include "ltlvisit/tostring.hh"
#include "ltlvisit/apcollect.hh"
#include "ltlast/allnodes.hh"