Macaulay2 » Documentation
Packages » ThinSincereQuivers > isSemistable
next | previous | forward | backward | up | index | toc

isSemistable -- whether a subquiver is semistable with respect to a given weight

Synopsis

Description

This function determines if a given subquiver is semistable with respect to the weight saved on Q. A subquiver SQ of the quiver Q is semistable if for every subset V of the vertices of Q that is also SQ-successor closed, the sum of the weights associated to V is nonnegative.

i1 : isSemistable ({0, 1}, bipartiteQuiver(2, 3))

o1 = false
i2 : isSemistable ({0, 1, 3, 4, 5}, bipartiteQuiver(2, 3))

o2 = true
i3 : Q = bipartiteQuiver(2, 3);
i4 : S = first(subquivers(Q, Format => "quiver", AsSubquiver => true))

o4 = ToricQuiver{flow => {1, 0, 0, 0, 0, 0}                            }
                 IncidenceMatrix => | -1 -1 -1 0  0  0  |
                                    | 0  0  0  -1 -1 -1 |
                                    | 1  0  0  1  0  0  |
                                    | 0  1  0  0  1  0  |
                                    | 0  0  1  0  0  1  |
                 Q0 => {0, 1, 2, 3, 4}
                 Q1 => {{0, 2}, {0, 3}, {0, 4}, {1, 2}, {1, 3}, {1, 4}}
                 synonym => toric quiver
                 weights => {-1, 0, 1, 0, 0}

o4 : ToricQuiver
i5 : isSemistable (S, Q)

o5 = false

Ways to use isSemistable :

For the programmer

The object isSemistable is a method function.