]> CRI, Mines Paris - PSL - linpy.git/blobdiff - linpy/__init__.py
Rename Expression class into LinExpr
[linpy.git] / linpy / __init__.py
index 7d67f77f3ebe95fd55bb33c3cffdd616b551b6d4..2fdc73e89df8024d7615ebca18d5b312f8b6bd46 100644 (file)
 # along with LinPy.  If not, see <http://www.gnu.org/licenses/>.
 
 """
-A polyhedral library based on ISL.
+A polyhedral library based on ISL
 """
 
 from .geometry import Point, Vector
-from .linexprs import Expression, Symbol, Dummy, symbols, Rational
+from .linexprs import LinExpr, Symbol, Dummy, symbols, Rational
 from .polyhedra import Polyhedron, Eq, Ne, Le, Lt, Ge, Gt, Ne, Empty, Universe
 from .domains import Domain, And, Or, Not
 
 
 __all__ = [
-    'Expression', 'Symbol', 'Dummy', 'symbols', 'Rational',
+    'LinExpr', 'Symbol', 'Dummy', 'symbols', 'Rational',
     'Point', 'Vector',
     'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe',
     'Domain', 'And', 'Or', 'Not',