X-Git-Url: https://scm.cri.mines-paristech.fr/git/linpy.git/blobdiff_plain/7b93cea1daf2889e9ee10ca9c22a1b5124404937..c9bd08381cbc109ae9602cc780fc7e8899651ae3:/linpy/__init__.py?ds=sidebyside diff --git a/linpy/__init__.py b/linpy/__init__.py index 7d67f77..2fdc73e 100644 --- a/linpy/__init__.py +++ b/linpy/__init__.py @@ -16,17 +16,17 @@ # along with LinPy. If not, see . """ -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',