Example #1
0
 def __init__(self, operator, lhs, rhs):
     TransitiveRelation.__init__(self, operator, lhs, rhs)
     # The lower bound side of this inequality.
     # (regardless of the 'direction' style).
     self.lower = self.operands[0]
     # The upper bound side of this inequality.
     self.upper = self.operands[1]
Example #2
0
 def __init__(self, operator, lhs, rhs):
     TransitiveRelation.__init__(self, operator, lhs, rhs)
Example #3
0
 def __init__(self, operator, lhs, rhs, *, styles):
     TransitiveRelation.__init__(self, operator, lhs, rhs, styles=styles)
     self.subset = self.operands[0]
     self.superset = self.operands[1]