]> CRI, Mines Paris - PSL - linpy.git/blobdiff - pypol/__init__.py
Implement isl_basic_set_constraints
[linpy.git] / pypol / __init__.py
index 7a195ca6194bb58fb936d5ce7be1bd97373243e7..451d7f18974be7a56a2831378336caa314456d70 100644 (file)
@@ -2,13 +2,13 @@
 A polyhedral library based on ISL.
 """
 
-from .linear import Constant, Symbol, symbols
+from .linear import Polyhedron, Constant, Symbol, symbols
 from .linear import eq, le, lt, ge, gt
 from .linear import Empty, Universe
 
 
 __all__ = [
-    'Constant', 'Symbol', 'symbols',
+    'Polyhedron', 'Constant', 'Symbol', 'symbols',
     'eq', 'le', 'lt', 'ge', 'gt',
     'Empty', 'Universe'
 ]