postproc: default to an empty formula
* src/twaalgos/postproc.hh: Allow the formula not to be specified. The code already support that, as it is called with an explicit nullptr in autfilt (for example), but not requiring the nullptr is better for the Python bindings.
This commit is contained in:
parent
5e07e8384d
commit
2fa9c27534
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ namespace spot
|
||||||
///
|
///
|
||||||
/// The returned automaton might be a new automaton,
|
/// The returned automaton might be a new automaton,
|
||||||
/// or an in-place modification of the \a input automaton.
|
/// or an in-place modification of the \a input automaton.
|
||||||
twa_graph_ptr run(twa_graph_ptr input, formula f);
|
twa_graph_ptr run(twa_graph_ptr input, formula f = nullptr);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
twa_graph_ptr do_simul(const twa_graph_ptr& input, int opt);
|
twa_graph_ptr do_simul(const twa_graph_ptr& input, int opt);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue