1 | initial version |
For your first question, i guess it is a bug, but it should be inspected further.
For your second question, you can decide which inequalities with the operator()
method:
sage: s[1][0].operator()
<built-in function eq>
sage: s[1][1].operator()
<built-in function gt>
(eq
stands for "equal", gt
stands for "greater than")
2 | No.2 Revision |
For your first question, i guess it is a bug, but it should be inspected further.
For your second question, you can decide which inequalities with the operator()
method:
sage: s[1][0].operator()
<built-in function eq>
sage: s[1][1].operator()
<built-in function gt>
(eq
stands for "equal", gt
stands for "greater than")
EDIT
You can recognize the operators by doing:
sage: s[1][0].operator() == operator.eq
True
sage: s[1][1].operator() == operator.gt
True