X-Git-Url: https://svn.cri.mines-paristech.fr/git/linpy.git/blobdiff_plain/1d494bb187b70135df721c13306d7f26fdf33f50..e21e06be0a63f74174e03a53037e91e051c84b79:/pypol/__init__.py

diff --git a/pypol/__init__.py b/pypol/__init__.py
index fc70bea..e39bce7 100644
--- a/pypol/__init__.py
+++ b/pypol/__init__.py
@@ -2,13 +2,13 @@
 A polyhedral library based on ISL.
 """
 
-from .linexprs import Expression, Constant, Symbol, symbols
+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
 
 
 __all__ = [
-    'Expression', 'Constant', 'Symbol', 'symbols',
+    'Expression', 'Symbol', 'Dummy', 'symbols', 'Rational',
     'Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe',
     'Domain', 'And', 'Or', 'Not',
 ]