Remove const qualifier in translator::run return type
* src/tgbaalgos/translate.cc, src/tgbaalgos/translate.hh: Remove const qualifier in translator::run return type.
This commit is contained in:
parent
37bcb5d959
commit
5817a3c11b
2 changed files with 4 additions and 4 deletions
|
|
@ -61,7 +61,7 @@ namespace spot
|
||||||
simpl_owned_ = simpl_ = new ltl::ltl_simplifier(options, dict);
|
simpl_owned_ = simpl_ = new ltl::ltl_simplifier(options, dict);
|
||||||
}
|
}
|
||||||
|
|
||||||
const_tgba_digraph_ptr translator::run(const ltl::formula** f)
|
tgba_digraph_ptr translator::run(const ltl::formula** f)
|
||||||
{
|
{
|
||||||
const ltl::formula* r = simpl_->simplify(*f);
|
const ltl::formula* r = simpl_->simplify(*f);
|
||||||
(*f)->destroy();
|
(*f)->destroy();
|
||||||
|
|
@ -91,7 +91,7 @@ namespace spot
|
||||||
return aut;
|
return aut;
|
||||||
}
|
}
|
||||||
|
|
||||||
const_tgba_digraph_ptr translator::run(const ltl::formula* f)
|
tgba_digraph_ptr translator::run(const ltl::formula* f)
|
||||||
{
|
{
|
||||||
f->clone();
|
f->clone();
|
||||||
auto aut = run(&f);
|
auto aut = run(&f);
|
||||||
|
|
|
||||||
|
|
@ -103,14 +103,14 @@ namespace spot
|
||||||
///
|
///
|
||||||
/// The formula \a f is simplified internally, but it is not
|
/// The formula \a f is simplified internally, but it is not
|
||||||
/// not destroyed (this is the responsibility of the caller).
|
/// not destroyed (this is the responsibility of the caller).
|
||||||
const_tgba_digraph_ptr run(const ltl::formula* f);
|
tgba_digraph_ptr run(const ltl::formula* f);
|
||||||
|
|
||||||
/// \brief Convert \a f into an automaton, and update f.
|
/// \brief Convert \a f into an automaton, and update f.
|
||||||
///
|
///
|
||||||
/// The formula <code>*f</code> is destroyed, and replaced
|
/// The formula <code>*f</code> is destroyed, and replaced
|
||||||
/// by the simplified version, which should be destroyed by
|
/// by the simplified version, which should be destroyed by
|
||||||
/// the caller.
|
/// the caller.
|
||||||
const_tgba_digraph_ptr run(const ltl::formula** f);
|
tgba_digraph_ptr run(const ltl::formula** f);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void setup_opt(const option_map* opt);
|
void setup_opt(const option_map* opt);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue