doc: add tut90.org about bdd_dict

Fixes #372.

* doc/org/tut90.org: New file.
* doc/Makefile.am, doc/org/tut.org: Add it.
* NEWS: Mention it.
* python/spot/__init__.py: Allow make_twa_graph with
default bdd_dict.
This commit is contained in:
Alexandre Duret-Lutz 2019-06-26 20:56:39 +02:00
parent 7f48a08ead
commit ad2f5524bb
5 changed files with 461 additions and 0 deletions

View file

@ -200,6 +200,12 @@ class twa_graph:
from IPython.display import SVG
return SVG(_ostream_to_svg(ostr))
def make_twa_graph(*args):
from spot.impl import make_twa_graph as mtg
if len(args) == 0:
return mtg(_bdd_dict)
return mtg(*args)
@_extend(formula)
class formula:
def __init__(self, str):