In [1]:
import awalipy as vr
[Warning] The python module awalipy relies on compilation executed "on-the-fly" depending on the context (type of weights, of labels, etc.). As a result, the very first call to a given function in a given context may take up to 10 seconds. 

In [2]:
a1 = vr.load("a1")
In [3]:
a1.display()
%3 I2 2 s0 I2->2 F4 2->2 a, b 3 s1 2->3 a 4 s2 3->4 b 4->F4 4->4 a, b
In [4]:
a1.is_deterministic()
Out[4]:
False
In [5]:
vr.is_deterministic(a1)
Out[5]:
False
In [6]:
a1.determinize().display()
%3 I2 2 s0 I2->2 F4 F5 2->2 b 3 s1 2->3 a 3->3 a 4 s2 3->4 b 4->F4 4->4 b 5 s3 4->5 a 5->F5 5->4 b 5->5 a
In [ ]: