In [ ]:
import spot
spot.setup()
Work in progress for a representation of EL-automata (a.k.a. twa
in Spot) using MTBDDs.
In [2]:
a = spot.translate("(G(Fa U b) <-> FGc)", "generic", "deterministic")
a
Out[2]:
In [3]:
m = spot.dtwa_to_mtdtwa(a)
m
Out[3]:
Each terminal stores a integerer that allows to retrive the data presented in the leaves above: a set of colors, and a destination state.
In [4]:
for i, d in enumerate(m.terminal_data):
print(f"terminal_data[{i}] = {d}")