python: update the formulaiterator bindings

* wrap/python/spot.py: Add the unabbreviate() method, and
remove unabbrivate_ltl() and get_literal().
* wrap/python/tests/randltl.ipynb: Demonstrate unabbreviate().
This commit is contained in:
Alexandre Duret-Lutz 2015-10-18 11:54:51 +02:00
parent 1d30242d17
commit 9689c4ccfc
2 changed files with 42 additions and 5 deletions

View file

@ -706,6 +706,6 @@ for fun in dir(formula):
fun[:4] == 'has_')):
_addfilter(fun)
for fun in ['remove_x', 'get_literal', 'relabel', 'relabel_bse',
'simplify', 'unabbreviate_ltl']:
for fun in ['remove_x', 'relabel', 'relabel_bse',
'simplify', 'unabbreviate']:
_addmap(fun)