X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/950e4adf4d155a2880fbfcd61021f775dfddaeac..56e65cb91a4e6759404696f43d44bcebad6b0460:/linpy/__init__.py diff --git a/linpy/__init__.py b/linpy/__init__.py index 1e32751..2012cb1 100644 --- a/linpy/__init__.py +++ b/linpy/__init__.py @@ -20,14 +20,14 @@ A polyhedral library based on ISL """ from .geometry import GeometricObject, Point, Vector -from .linexprs import LinExpr, Symbol, Dummy, symbols, Rational -from .polyhedra import Polyhedron, Eq, Ne, Le, Lt, Ge, Gt, Ne, Empty, Universe +from .linexprs import LinExpr, Symbol, symbols, Dummy, Rational +from .polyhedra import Polyhedron, Lt, Le, Eq, Ne, Ge, Gt, Ne, Empty, Universe from .domains import Domain, And, Or, Not __all__ = [ - 'LinExpr', 'Symbol', 'Dummy', 'symbols', 'Rational', + 'LinExpr', 'Symbol', 'symbols', 'Dummy', 'Rational', 'GeometricObject', 'Point', 'Vector', - 'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe', + 'Polyhedron', 'Lt', 'Le', 'Eq', 'Ne', 'Ge', 'Gt', 'Empty', 'Universe', 'Domain', 'And', 'Or', 'Not', ]