string = '{} < {}'.format(self._toiscc(symbols), other._toiscc(symbols))
string = _iscc.eval(string)
return string == 'True'
def issuperset(self, other):
# test whether every element in other is in the polyhedron
string = '{} < {}'.format(self._toiscc(symbols), other._toiscc(symbols))
string = _iscc.eval(string)
return string == 'True'
def issuperset(self, other):
# test whether every element in other is in the polyhedron