X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/8f61fe65a53ff47b23c8527c47e2bed32c1d2e6f..cc1d83eaadffc1d5de296e2ec2b401d04de70c41:/linpy/__init__.py diff --git a/linpy/__init__.py b/linpy/__init__.py index 0ae2e66..d524fbc 100644 --- a/linpy/__init__.py +++ b/linpy/__init__.py @@ -16,18 +16,37 @@ # 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 .polyhedra import Polyhedron, Eq, Ne, Le, Lt, 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__ = [ - 'Expression', 'Symbol', 'Dummy', 'symbols', 'Rational', - 'Point', 'Vector', - 'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', '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', ]