22 #include <spot/twa/twagraph.hh>
23 #include <spot/tl/apcollect.hh>
24 #include <spot/tl/simplify.hh>
25 #include <spot/twaalgos/powerset.hh>
87 bool exprop =
false,
bool symb_merge =
true,
88 bool branching_postponement =
false,
89 bool fair_loop_approx =
false,
92 bool unambiguous =
false,
94 bool label_with_ltl =
false,
95 bool force_obligation =
false);
173 bool symb_merge =
true;
175 bool branching_postponement =
false;
178 bool fair_loop_approx =
false;
180 bool unambiguous =
false;
182 bool force_obligation =
false;
297 std::unique_ptr<impl> impl_;
On-the-fly LTL→TGBA explorer.
Definition: ltl2tgba_fm.hh:165
acc_cond::mark_t bdd_to_mark(bdd a) const
Convert a cube over a_set() into acceptance marks.
std::vector< fm_edge > succ_as_edges(formula s)
formula init_state() const
The initial formula-state (canonicalized if symb_merge is on).
const bdd & next_set() const
Variable set: Next variables (destination encoding).
formula conj_bdd_to_formula(bdd cube) const
Convert a cube over next_set() into a formula.
bdd succ_as_bdd(formula s)
const bdd & var_set() const
Variable set: atomic propositions.
ltl_to_tgba_fm_otf(formula f, twa_graph_ptr aut, options opts=options(), tl_simplifier *simplifier=nullptr, const atomic_prop_set *unobs=nullptr)
Constructor.
std::vector< fm_simple_edge > succ_as_acc_and_dest(formula s)
Decompose the successors of s into edges without conditions.
const bdd & a_set() const
Variable set: acceptance promises.
const bdd_dict_ptr & get_dict() const
The BDD dictionary.
int register_next_variable(formula f)
formula orig_formula() const
Helper object to specify when an algorithm should abort its construction.
Definition: powerset.hh:50
Rewrite or simplify f in various ways.
Definition: simplify.hh:145
std::set< formula > atomic_prop_set
Set of atomic propositions.
Definition: apcollect.hh:34
std::shared_ptr< bdd_dict > bdd_dict_ptr
Shared pointer to a bdd_dict.
Definition: bdddict.hh:304
twa_graph_ptr ltl_to_tgba_fm(formula f, const bdd_dict_ptr &dict, bool exprop=false, bool symb_merge=true, bool branching_postponement=false, bool fair_loop_approx=false, const atomic_prop_set *unobs=nullptr, tl_simplifier *simplifier=nullptr, bool unambiguous=false, const output_aborter *aborter=nullptr, bool label_with_ltl=false, bool force_obligation=false)
Build a spot::twa_graph_ptr from an LTL or PSL formula.
std::shared_ptr< twa_graph > twa_graph_ptr
Shared pointer to a mutable twa_graph.
Definition: fwd.hh:44
unsigned * cube
A cube is only a set of bits in memory.
Definition: cube.hh:66
Definition: automata.hh:26
An acceptance mark.
Definition: acc.hh:76
A single successor edge from a formula-state.
Definition: ltl2tgba_fm.hh:100
formula dst
Destination formula-state.
Definition: ltl2tgba_fm.hh:102
bdd cond
Condition on atomic propositions.
Definition: ltl2tgba_fm.hh:101
acc_cond::mark_t acc
Definition: ltl2tgba_fm.hh:103
A simplified successor edge without condition.
Definition: ltl2tgba_fm.hh:115
formula dst
Destination formula-state.
Definition: ltl2tgba_fm.hh:117
acc_cond::mark_t acc
Acceptance marks, using negated-Inf semantics.
Definition: ltl2tgba_fm.hh:116
Bundle the boolean options for translation.
Definition: ltl2tgba_fm.hh:169