How to make the vertex $0$ frozen?

48 Views Asked by At

I would like to define a quiver with the vertex $0$ frozen:

Q = ClusterQuiver(DiGraph([[0,1],[1,2],[2,3],[2,4]]),frozen=0)

But it seems that this doesn't work and the vertex $0$ is still mutable. How to make the vertex 0 frozen? Thank you very much.

2

There are 2 best solutions below

0
On BEST ANSWER

I don't see any documentation of exactly how to use this in the documentation, but it does seem that it's the "number of frozen variables" so if you ask for zero frozen variables you get zero frozen variables? In particular, I doubt it corresponds directly to the vertices in this way. But I don't know much about cluster quivers!

0
On

We can use the following codes.

Q = ClusterQuiver( matrix([[0,-1,0,0],[1,0,-1,-1],[0,1,0,0],[0,1,0,0],[-1,0,0,0]]) ); Q.show()