* src/ltlvisit/basicreduce.hh: New file, extracted from ...

* src/ltlvisit/reducform.hh: ... here.
* src/ltlvisit/basereduc.cc: Rename as ...
* src/ltlvisit/basicreduce.cc: ... this, to match the function name.
* src/ltlvisit/Makefile.am (ltlvisit_HEADERS, libltlvisit_la_SOURCES):
Adjust filenames.
* src/ltlvisit/reducform.cc: Adjust includes.
This commit is contained in:
Alexandre Duret-Lutz 2004-06-22 22:27:53 +00:00
parent a57c619ed5
commit 47e9ac108f
6 changed files with 58 additions and 17 deletions

View file

@ -53,13 +53,8 @@ namespace spot
/// \return the reduced formula
formula* reduce(const formula* f, int opt = Reduce_All);
/// Basic rewritings.
formula* basic_reduce(const formula* f);
/// \brief Check whether a formula is eventual.
///
/// FIXME: Describe what eventual formulae are. Cite paper.
/// This comes from
/// \verbatim
/// @InProceedings{ etessami.00.concur,
@ -72,21 +67,16 @@ namespace spot
/// editor = {C. Palamidessi},
/// volume = {1877},
/// series = {Lecture Notes in Computer Science},
/// publisher = {Springer-Verlag}
/// publisher = {Springer-Verlag}
/// }
/// \endverbatim
/// FIXME: Describe what eventual formulae are.
bool is_eventual(const formula* f);
/// \brief Check whether a formula is universal.
///
/// FIXME: Describe what universal formulae are. Cite paper.
bool is_universal(const formula* f);
/// Whether a formula starts with GF.
bool is_GF(const formula* f);
/// Whether a formula starts with FG.
bool is_FG(const formula* f);
}
}