projects
/
linpy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
950e4ad
)
Change the order of elements in __init__.py
author
Vivien Maisonneuve
<v.maisonneuve@gmail.com>
Tue, 19 Aug 2014 14:48:52 +0000
(16:48 +0200)
committer
Vivien Maisonneuve
<v.maisonneuve@gmail.com>
Tue, 19 Aug 2014 14:48:52 +0000
(16:48 +0200)
linpy/__init__.py
patch
|
blob
|
history
diff --git
a/linpy/__init__.py
b/linpy/__init__.py
index
1e32751
..
2012cb1
100644
(file)
--- a/
linpy/__init__.py
+++ b/
linpy/__init__.py
@@
-20,14
+20,14
@@
A polyhedral library based on ISL
"""
from .geometry import GeometricObject, Point, Vector
"""
from .geometry import GeometricObject, Point, Vector
-from .linexprs import LinExpr, Symbol,
Dummy, symbols
, Rational
-from .polyhedra import Polyhedron,
Eq, Ne, Le, Lt
, Ge, Gt, Ne, Empty, Universe
+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
__all__ = [
from .domains import Domain, And, Or, Not
__all__ = [
- 'LinExpr', 'Symbol', '
Dummy', 'symbols
', 'Rational',
+ 'LinExpr', 'Symbol', '
symbols', 'Dummy
', 'Rational',
'GeometricObject', 'Point', 'Vector',
'GeometricObject', 'Point', 'Vector',
- 'Polyhedron', '
Eq', 'Ne', 'Le', 'Lt
', 'Ge', 'Gt', 'Empty', 'Universe',
+ 'Polyhedron', '
Lt', 'Le', 'Eq', 'Ne
', 'Ge', 'Gt', 'Empty', 'Universe',
'Domain', 'And', 'Or', 'Not',
]
'Domain', 'And', 'Or', 'Not',
]