projects
/
linpy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
New method Expression.subs
[linpy.git]
/
pypol
/
__init__.py
diff --git
a/pypol/__init__.py
b/pypol/__init__.py
index
fde0347
..
fc70bea
100644
(file)
--- a/
pypol/__init__.py
+++ b/
pypol/__init__.py
@@
-1,15
+1,14
@@
-
"""
A polyhedral library based on ISL.
"""
"""
A polyhedral library based on ISL.
"""
-from .line
ar import constant, s
ymbol, symbols
-from .
linear import eq, le, lt, ge, gt
-from .
linear import empty, universe
+from .line
xprs import Expression, Constant, S
ymbol, symbols
+from .
polyhedra import Polyhedron, Eq, Ne, Le, Lt, Ge, Gt, Ne, Empty, Universe
+from .
domains import Domain, And, Or, Not
__all__ = [
__all__ = [
- '
constant', 's
ymbol', 'symbols',
- '
eq', 'le', 'lt', 'ge', 'gt
',
- '
empty', 'universe'
+ '
Expression', 'Constant', 'S
ymbol', 'symbols',
+ '
Polyhedron', 'Eq', 'Ne', 'Le', 'Lt', 'Ge', 'Gt', 'Empty', 'Universe
',
+ '
Domain', 'And', 'Or', 'Not',
]
]