projects
/
linpy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
PEP 8
[linpy.git]
/
linpy
/
__init__.py
diff --git
a/linpy/__init__.py
b/linpy/__init__.py
index
bbe5693
..
d524fbc
100644
(file)
--- a/
linpy/__init__.py
+++ b/
linpy/__init__.py
@@
-19,17
+19,34
@@
A polyhedral library based on isl
"""
A polyhedral library based on isl
"""
-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 ._version import __version__
from ._version import __version__
+from .domains import And, Domain, Not, Or
+from .geometry import GeometricObject, Point, Vector
+from .linexprs import Dummy, LinExpr, Rational, Symbol, symbols
+from .polyhedra import Empty, Eq, Ge, Gt, Le, Lt, Ne, Polyhedron, Universe
__all__ = [
__all__ = [
- 'LinExpr', 'Symbol', 'symbols', 'Dummy', 'Rational',
- 'GeometricObject', 'Point', 'Vector',
- 'Polyhedron', 'Lt', 'Le', 'Eq', 'Ne', 'Ge', 'Gt', 'Empty', 'Universe',
- 'Domain', 'And', 'Or', 'Not',
'__version__',
'__version__',
+ 'And',
+ 'Domain',
+ 'Dummy',
+ 'Empty',
+ 'Eq',
+ 'Ge',
+ 'GeometricObject',
+ 'Gt',
+ 'Le',
+ 'LinExpr',
+ 'Lt',
+ 'Ne',
+ 'Not',
+ 'Or',
+ 'Point',
+ 'Polyhedron',
+ 'Rational',
+ 'Symbol',
+ 'symbols',
+ 'Universe',
+ 'Vector',
]
]