From: Vivien Maisonneuve Date: Wed, 18 Jun 2014 19:57:57 +0000 (+0200) Subject: Remove misplaced methods X-Git-Tag: 1.0~241 X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/commitdiff_plain/a157f7c947533f4be375e55f78adfa3dae7eeef7?hp=a604605a7e227b0de42e40844179f9b5fa9a5fa5 Remove misplaced methods --- diff --git a/pypol/linear.py b/pypol/linear.py index 7544633..a562a3f 100644 --- a/pypol/linear.py +++ b/pypol/linear.py @@ -378,13 +378,6 @@ class Polyhedron: def inequalities(self): return self._inequalities - @property - def constant(self): - return self._constant - - def isconstant(self): - return len(self._coefficients) == 0 - def isempty(self): return bool(libisl.isl_basic_set_is_empty(self._bset))