gen: pass the bdd_dict to aut_pattern()

* spot/gen/automata.hh (aut_pattern): Add the dict argument.
* spot/gen/automata.cc, python/spot/gen.i: Adjust.
* tests/python/gen.py: Make sure two automata built without
specifying any dictionary share the same one.
This commit is contained in:
Alexandre Duret-Lutz 2017-04-27 18:00:51 +02:00
parent 11ca2803c9
commit 649793df75
4 changed files with 24 additions and 5 deletions

View file

@ -30,6 +30,7 @@
%include "std_shared_ptr.i"
%shared_ptr(spot::twa_graph)
%shared_ptr(spot::bdd_dict)
%{
#include <spot/gen/automata.hh>
@ -40,6 +41,7 @@ using namespace spot;
%import(module="spot.impl") <spot/misc/common.hh>
%import(module="spot.impl") <spot/tl/formula.hh>
%import(module="spot.impl") <spot/twa/fwd.hh>
%import(module="spot.impl") <spot/twa/bdddict.hh>
%exception {
try {
@ -86,6 +88,14 @@ def ltl_patterns(*args):
for n in range(min, max + 1):
yield ltl_pattern(pat, n)
# Override aut_pattern now(), because %feature("shadow") does not
# seem to work correctly. See https://github.com/swig/swig/issues/980
def aut_pattern(pattern: 'spot::gen::aut_pattern_id', n: 'int',
dict: 'spot::bdd_dict_ptr' = None) -> "spot::twa_graph_ptr":
return _gen.aut_pattern(pattern, n, dict or spot._bdd_dict)
def aut_patterns(*args):
"""
Generate automata patterns.