In [32]:
%display latex
In [33]:
load("../specifier.py")
In [38]:
S = Specification([],[[2,3,1,4],[3,2,4,1],[2,1,4,5,3],[4,5,2,1,3]])
In [35]:
S
Out[35]:
In [36]:
S.solve()
Out[36]:
In [37]:
C = S.sampler(1/4, formal=True)
In [18]:
perm = [C.run(10) for _ in range(10)] 
In [20]:
list_plot(perm[0],aspect_ratio = 1,dpi = 50)
Out[20]:
In [21]:
list_plot(perm[1],aspect_ratio = 1,dpi = 50)
Out[21]:
In [22]:
list_plot(perm[2],aspect_ratio = 1,dpi = 50)
Out[22]:
In [25]:
list_plot(perm[3],aspect_ratio = 1,dpi = 50)
Out[25]:
In [26]:
list_plot(perm[4],aspect_ratio = 1,dpi = 50)
Out[26]:
In [27]:
list_plot(perm[5],aspect_ratio = 1,dpi = 50)
Out[27]:
In [28]:
list_plot(perm[6],aspect_ratio = 1,dpi = 50)
Out[28]:
In [29]:
list_plot(perm[7],aspect_ratio = 1,dpi = 50)
Out[29]:
In [30]:
list_plot(perm[8],aspect_ratio = 1,dpi = 50)
Out[30]:
In [31]:
list_plot(perm[9],aspect_ratio = 1,dpi = 50)
Out[31]:
In [ ]: