ltl: remove is_eltl_formula()

* doc/tl/tl.tex, src/ltlast/atomic_prop.cc, src/ltlast/binop.cc,
src/ltlast/bunop.cc, src/ltlast/constant.cc, src/ltlast/formula.cc,
src/ltlast/formula.hh, src/ltlast/multop.cc, src/ltlast/unop.cc:
Remove is_eltl_formula().
* src/tests/kind.test: Adjust.
This commit is contained in:
Alexandre Duret-Lutz 2015-06-20 14:48:07 +02:00
parent ce3ad1e3ff
commit 813c3799c0
10 changed files with 6 additions and 33 deletions

View file

@ -170,12 +170,6 @@ namespace spot
return is.ltl_formula;
}
/// Whether the formula uses only ELTL operators.
bool is_eltl_formula() const
{
return is.eltl_formula;
}
/// Whether the formula uses only PSL operators.
bool is_psl_formula() const
{
@ -344,7 +338,6 @@ namespace spot
bool syntactic_si:1; // LTL-X or siPSL
bool sugar_free_ltl:1; // No F and G operators.
bool ltl_formula:1; // Only LTL operators.
bool eltl_formula:1; // Only ELTL operators.
bool psl_formula:1; // Only PSL operators.
bool sere_formula:1; // Only SERE operators.
bool finite:1; // Finite SERE formulae, or Bool+X forms.