4 .. py:class:: Polyhedron
9 .. py:method:: equalities(self)
11 Return a list of the equalities in a set.
13 .. py:method:: inequalities(self)
15 Return a list of the inequalities in a set.
17 .. py:method:: constraints(self)
19 Return ta list of the constraints of a set.
23 .. py:method:: disjoint(self)
25 Returns this set as a disjoint set.
27 .. py:method:: isuniverse(self)
29 Return true if this set is the Universe set.
31 .. py:method:: aspolyhedron(self)
33 Return polyhedral hull of this set.
35 .. py:method:: subs(self, symbol, expression=None)
37 Subsitute expression into given set and returns the result.
39 .. py:method:: Lt(left, right)
41 Assert first set is less than the second set.
43 .. py:method:: Le(left, right)
45 Assert first set is less than or equal to the second set.
47 .. py:method:: Eq(left, right)
49 Assert first set is equal to the second set.
51 .. py:method:: Ne(left, right)
53 Assert first set is not equal to the second set.
55 .. py:method:: Gt(left, right)
57 Assert first set is greater than the second set.
59 .. py:method:: Ge(left, right)
61 Assert first set is greater than or equal to the second set.