projects
/
linpy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Remove an unused import
[linpy.git]
/
linpy
/
domains.py
diff --git
a/linpy/domains.py
b/linpy/domains.py
index
b950e1e
..
581a065
100644
(file)
--- a/
linpy/domains.py
+++ b/
linpy/domains.py
@@
-24,7
+24,7
@@
from fractions import Fraction
from . import islhelper
from .islhelper import mainctx, libisl
from . import islhelper
from .islhelper import mainctx, libisl
-from .linexprs import LinExpr, Symbol
, Rational
+from .linexprs import LinExpr, Symbol
from .geometry import GeometricObject, Point, Vector
from .geometry import GeometricObject, Point, Vector
@@
-38,7
+38,7
@@
__all__ = [
class Domain(GeometricObject):
"""
A domain is a union of polyhedra. Unlike polyhedra, domains allow exact
class Domain(GeometricObject):
"""
A domain is a union of polyhedra. Unlike polyhedra, domains allow exact
- computation of union and complementary operations.
+ computation of union
, subtraction
and complementary operations.
A domain with a unique polyhedron is automatically subclassed as a
Polyhedron instance.
A domain with a unique polyhedron is automatically subclassed as a
Polyhedron instance.