tl: rename ltl_simplifier to tl_simplifier
* doc/org/tut01.org, doc/tl/tl.tex, src/bin/common_r.hh, src/bin/ltlfilt.cc, src/tests/equalsf.cc, src/tests/ikwiad.cc, src/tests/randtgba.cc, src/tests/reduc.cc, src/tests/syntimpl.cc, src/tl/nenoform.cc, src/tl/randomltl.cc, src/tl/randomltl.hh, src/tl/simplify.cc, src/tl/simplify.hh, src/twaalgos/ltl2tgba_fm.cc, src/twaalgos/ltl2tgba_fm.hh, src/twaalgos/stutter.cc, src/twaalgos/translate.cc, src/twaalgos/translate.hh, wrap/python/ajax/spotcgi.in, wrap/python/spot.py, wrap/python/tests/interdep.py: Rename ltl_simplifier to tl_simplifier. * NEWS: Mention it.
This commit is contained in:
parent
21be883cf6
commit
176c9e2e17
23 changed files with 119 additions and 117 deletions
|
|
@ -133,7 +133,7 @@ namespace spot
|
|||
{
|
||||
public:
|
||||
|
||||
translate_dict(twa_graph_ptr& a, ltl_simplifier* ls, bool exprop,
|
||||
translate_dict(twa_graph_ptr& a, tl_simplifier* ls, bool exprop,
|
||||
bool single_acc, bool unambiguous)
|
||||
: a_(a),
|
||||
dict(a->get_dict()),
|
||||
|
|
@ -156,7 +156,7 @@ namespace spot
|
|||
|
||||
twa_graph_ptr& a_;
|
||||
bdd_dict_ptr dict;
|
||||
ltl_simplifier* ls;
|
||||
tl_simplifier* ls;
|
||||
mark_tools mt;
|
||||
|
||||
typedef bdd_dict::fv_map fv_map;
|
||||
|
|
@ -1886,9 +1886,9 @@ namespace spot
|
|||
ltl_to_tgba_fm(formula f2, const bdd_dict_ptr& dict,
|
||||
bool exprop, bool symb_merge, bool branching_postponement,
|
||||
bool fair_loop_approx, const atomic_prop_set* unobs,
|
||||
ltl_simplifier* simplifier, bool unambiguous)
|
||||
tl_simplifier* simplifier, bool unambiguous)
|
||||
{
|
||||
ltl_simplifier* s = simplifier;
|
||||
tl_simplifier* s = simplifier;
|
||||
|
||||
// Simplify the formula, if requested.
|
||||
if (s)
|
||||
|
|
@ -1903,7 +1903,7 @@ namespace spot
|
|||
// negations on the atomic propositions. We also suppress
|
||||
// logic abbreviations such as <=>, =>, or XOR, since they
|
||||
// would involve negations at the BDD level.
|
||||
s = new ltl_simplifier(dict);
|
||||
s = new tl_simplifier(dict);
|
||||
f2 = s->negative_normal_form(f2, false);
|
||||
}
|
||||
assert(f2.is_in_nenoform());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue