X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/1551132d8878c3cec4609ec9b47cb30f72df5350..cc1d83eaadffc1d5de296e2ec2b401d04de70c41:/linpy/__init__.py diff --git a/linpy/__init__.py b/linpy/__init__.py index bbe5693..d524fbc 100644 --- a/linpy/__init__.py +++ b/linpy/__init__.py @@ -19,17 +19,34 @@ A polyhedral library based on isl """ -from .geometry import GeometricObject, Point, Vector -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 from ._version import __version__ +from .domains import And, Domain, Not, Or +from .geometry import GeometricObject, Point, Vector +from .linexprs import Dummy, LinExpr, Rational, Symbol, symbols +from .polyhedra import Empty, Eq, Ge, Gt, Le, Lt, Ne, Polyhedron, Universe __all__ = [ - 'LinExpr', 'Symbol', 'symbols', 'Dummy', 'Rational', - 'GeometricObject', 'Point', 'Vector', - 'Polyhedron', 'Lt', 'Le', 'Eq', 'Ne', 'Ge', 'Gt', 'Empty', 'Universe', - 'Domain', 'And', 'Or', 'Not', '__version__', + 'And', + 'Domain', + 'Dummy', + 'Empty', + 'Eq', + 'Ge', + 'GeometricObject', + 'Gt', + 'Le', + 'LinExpr', + 'Lt', + 'Ne', + 'Not', + 'Or', + 'Point', + 'Polyhedron', + 'Rational', + 'Symbol', + 'symbols', + 'Universe', + 'Vector', ]