Remove an unused import
[linpy.git] / linpy / __init__.py
index 7d67f77..bbe5693 100644 (file)
 # along with LinPy.  If not, see <http://www.gnu.org/licenses/>.
 
 """
 # along with LinPy.  If not, see <http://www.gnu.org/licenses/>.
 
 """
-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 .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 .domains import Domain, And, Or, Not
+from ._version import __version__
 
 
 __all__ = [
 
 
 __all__ = [
-    'Expression', 'Symbol', 'Dummy', 'symbols', 'Rational',
-    'Point', 'Vector',
-    'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe',
+    'LinExpr', 'Symbol', 'symbols', 'Dummy', 'Rational',
+    'GeometricObject', 'Point', 'Vector',
+    'Polyhedron', 'Lt', 'Le', 'Eq', 'Ne', 'Ge', 'Gt', 'Empty', 'Universe',
     'Domain', 'And', 'Or', 'Not',
     'Domain', 'And', 'Or', 'Not',
+    '__version__',
 ]
 ]