X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/ba15f3f33f837b1291f74bc94081e99b860d3228..1551132d8878c3cec4609ec9b47cb30f72df5350:/linpy/__init__.py?ds=sidebyside diff --git a/linpy/__init__.py b/linpy/__init__.py index 1e32751..bbe5693 100644 --- a/linpy/__init__.py +++ b/linpy/__init__.py @@ -16,18 +16,20 @@ # along with LinPy. If not, see . """ -A polyhedral library based on ISL +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 +from ._version import __version__ __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', + '__version__', ]