5 from . import islhelper
7 from .islhelper
import mainctx
, libisl
, isl_set_basic_sets
8 from .linexprs
import Expression
, Symbol
17 @functools.total_ordering
26 def __new__(cls
, *polyhedra
):
27 from .polyhedra
import Polyhedron
28 if len(polyhedra
) == 1:
29 polyhedron
= polyhedra
[0]
30 if isinstance(polyhedron
, str):
31 return cls
.fromstring(polyhedron
)
32 elif isinstance(polyhedron
, Polyhedron
):
35 raise TypeError('argument must be a string '
36 'or a Polyhedron instance')
38 for polyhedron
in polyhedra
:
39 if not isinstance(polyhedron
, Polyhedron
):
40 raise TypeError('arguments must be Polyhedron instances')
41 symbols
= cls
._xsymbols
(polyhedra
)
42 islset
= cls
._toislset
(polyhedra
, symbols
)
43 return cls
._fromislset
(islset
, symbols
)
46 def _xsymbols(cls
, iterator
):
48 Return the ordered tuple of symbols present in iterator.
52 symbols
.update(item
.symbols
)
53 return tuple(sorted(symbols
, key
=Symbol
.sortkey
))
57 return self
._polyhedra
65 return self
._dimension
68 islset
= self
._toislset
(self
.polyhedra
, self
.symbols
)
69 islset
= libisl
.isl_set_make_disjoint(mainctx
, islset
)
70 return self
._fromislset
(islset
, self
.symbols
)
73 islset
= self
._toislset
(self
.polyhedra
, self
.symbols
)
74 empty
= bool(libisl
.isl_set_is_empty(islset
))
75 libisl
.isl_set_free(islset
)
79 return not self
.isempty()
82 islset
= self
._toislset
(self
.polyhedra
, self
.symbols
)
83 universe
= bool(libisl
.isl_set_plain_is_universe(islset
))
84 libisl
.isl_set_free(islset
)
88 islset
= self
._toislset
(self
.polyhedra
, self
.symbols
)
89 bounded
= bool(libisl
.isl_set_is_bounded(islset
))
90 libisl
.isl_set_free(islset
)
93 def __eq__(self
, other
):
94 symbols
= self
._xsymbols
([self
, other
])
95 islset1
= self
._toislset
(self
.polyhedra
, symbols
)
96 islset2
= other
._toislset
(other
.polyhedra
, symbols
)
97 equal
= bool(libisl
.isl_set_is_equal(islset1
, islset2
))
98 libisl
.isl_set_free(islset1
)
99 libisl
.isl_set_free(islset2
)
102 def isdisjoint(self
, other
):
103 symbols
= self
._xsymbols
([self
, other
])
104 islset1
= self
._toislset
(self
.polyhedra
, symbols
)
105 islset2
= self
._toislset
(other
.polyhedra
, symbols
)
106 equal
= bool(libisl
.isl_set_is_disjoint(islset1
, islset2
))
107 libisl
.isl_set_free(islset1
)
108 libisl
.isl_set_free(islset2
)
111 def issubset(self
, other
):
112 symbols
= self
._xsymbols
([self
, other
])
113 islset1
= self
._toislset
(self
.polyhedra
, symbols
)
114 islset2
= self
._toislset
(other
.polyhedra
, symbols
)
115 equal
= bool(libisl
.isl_set_is_subset(islset1
, islset2
))
116 libisl
.isl_set_free(islset1
)
117 libisl
.isl_set_free(islset2
)
120 def __le__(self
, other
):
121 return self
.issubset(other
)
123 def __lt__(self
, other
):
124 symbols
= self
._xsymbols
([self
, other
])
125 islset1
= self
._toislset
(self
.polyhedra
, symbols
)
126 islset2
= self
._toislset
(other
.polyhedra
, symbols
)
127 equal
= bool(libisl
.isl_set_is_strict_subset(islset1
, islset2
))
128 libisl
.isl_set_free(islset1
)
129 libisl
.isl_set_free(islset2
)
132 def complement(self
):
133 islset
= self
._toislset
(self
.polyhedra
, self
.symbols
)
134 islset
= libisl
.isl_set_complement(islset
)
135 return self
._fromislset
(islset
, self
.symbols
)
137 def __invert__(self
):
138 return self
.complement()
141 #does not change anything in any of the examples
142 #isl seems to do this naturally
143 islset
= self
._toislset
(self
.polyhedra
, self
.symbols
)
144 islset
= libisl
.isl_set_remove_redundancies(islset
)
145 return self
._fromislset
(islset
, self
.symbols
)
147 def polyhedral_hull(self
):
148 # several types of hull are available
149 # polyhedral seems to be the more appropriate, to be checked
150 from .polyhedra
import Polyhedron
151 islset
= self
._toislset
(self
.polyhedra
, self
.symbols
)
152 islbset
= libisl
.isl_set_polyhedral_hull(islset
)
153 return Polyhedron
._fromislbasicset
(islbset
, self
.symbols
)
155 def project_out(self
, dims
):
156 # use to remove certain variables
157 islset
= self
._toislset
(self
.polyhedra
, self
.symbols
)
159 for index
, symbol
in reversed(list(enumerate(self
.symbols
))):
163 islset
= libisl
.isl_set_project_out(islset
, libisl
.isl_dim_set
, index
+ 1, n
)
166 islset
= libisl
.isl_set_project_out(islset
, libisl
.isl_dim_set
, 0, n
)
167 dims
= [symbol
for symbol
in self
.symbols
if symbol
not in dims
]
168 return Domain
._fromislset
(islset
, dims
)
171 from .polyhedra
import Polyhedron
172 islset
= self
._toislset
(self
.polyhedra
, self
.symbols
)
173 islbset
= libisl
.isl_set_sample(islset
)
174 # next instruction should NOT be required
175 islbset
= libisl
.isl_basic_set_finalize(islbset
)
176 return Polyhedron
._fromislbasicset
(islbset
, self
.symbols
)
178 def intersection(self
, *others
):
181 symbols
= self
._xsymbols
((self
,) + others
)
182 islset1
= self
._toislset
(self
.polyhedra
, symbols
)
184 islset2
= other
._toislset
(other
.polyhedra
, symbols
)
185 islset1
= libisl
.isl_set_intersect(islset1
, islset2
)
186 return self
._fromislset
(islset1
, symbols
)
188 def __and__(self
, other
):
189 return self
.intersection(other
)
191 def union(self
, *others
):
194 symbols
= self
._xsymbols
((self
,) + others
)
195 islset1
= self
._toislset
(self
.polyhedra
, symbols
)
197 islset2
= other
._toislset
(other
.polyhedra
, symbols
)
198 islset1
= libisl
.isl_set_union(islset1
, islset2
)
199 return self
._fromislset
(islset1
, symbols
)
201 def __or__(self
, other
):
202 return self
.union(other
)
204 def __add__(self
, other
):
205 return self
.union(other
)
207 def difference(self
, other
):
208 symbols
= self
._xsymbols
([self
, other
])
209 islset1
= self
._toislset
(self
.polyhedra
, symbols
)
210 islset2
= other
._toislset
(other
.polyhedra
, symbols
)
211 islset
= libisl
.isl_set_subtract(islset1
, islset2
)
212 return self
._fromislset
(islset
, symbols
)
214 def __sub__(self
, other
):
215 return self
.difference(other
)
218 islset
= self
._toislset
(self
.polyhedra
, self
.symbols
)
219 islset
= libisl
.isl_set_lexmin(islset
)
220 return self
._fromislset
(islset
, self
.symbols
)
223 islset
= self
._toislset
(self
.polyhedra
, self
.symbols
)
224 islset
= libisl
.isl_set_lexmax(islset
)
225 return self
._fromislset
(islset
, self
.symbols
)
227 def num_parameters(self
):
228 #could be useful with large, complicated polyhedrons
229 islbset
= self
._toislbasicset
(self
.equalities
, self
.inequalities
, self
.symbols
)
230 num
= libisl
.isl_basic_set_dim(islbset
, libisl
.isl_dim_set
)
233 def involves_dims(self
, dims
):
234 #could be useful with large, complicated polyhedrons
235 islset
= self
._toislset
(self
.polyhedra
, self
.symbols
)
237 symbols
= sorted(list(self
.symbols
))
242 first
= symbols
.index(dims
[0])
248 value
= bool(libisl
.isl_set_involves_dims(islset
, libisl
.isl_dim_set
, first
, n
))
249 libisl
.isl_set_free(islset
)
253 def _fromislset(cls
, islset
, symbols
):
254 from .polyhedra
import Polyhedron
255 islset
= libisl
.isl_set_remove_divs(islset
)
256 islbsets
= isl_set_basic_sets(islset
)
257 libisl
.isl_set_free(islset
)
259 for islbset
in islbsets
:
260 polyhedron
= Polyhedron
._fromislbasicset
(islbset
, symbols
)
261 polyhedra
.append(polyhedron
)
262 if len(polyhedra
) == 0:
263 from .polyhedra
import Empty
265 elif len(polyhedra
) == 1:
268 self
= object().__new
__(Domain
)
269 self
._polyhedra
= tuple(polyhedra
)
270 self
._symbols
= cls
._xsymbols
(polyhedra
)
271 self
._dimension
= len(self
._symbols
)
274 def _toislset(cls
, polyhedra
, symbols
):
275 polyhedron
= polyhedra
[0]
276 islbset
= polyhedron
._toislbasicset
(polyhedron
.equalities
,
277 polyhedron
.inequalities
, symbols
)
278 islset1
= libisl
.isl_set_from_basic_set(islbset
)
279 for polyhedron
in polyhedra
[1:]:
280 islbset
= polyhedron
._toislbasicset
(polyhedron
.equalities
,
281 polyhedron
.inequalities
, symbols
)
282 islset2
= libisl
.isl_set_from_basic_set(islbset
)
283 islset1
= libisl
.isl_set_union(islset1
, islset2
)
287 def _fromast(cls
, node
):
288 from .polyhedra
import Polyhedron
289 if isinstance(node
, ast
.Module
) and len(node
.body
) == 1:
290 return cls
._fromast
(node
.body
[0])
291 elif isinstance(node
, ast
.Expr
):
292 return cls
._fromast
(node
.value
)
293 elif isinstance(node
, ast
.UnaryOp
):
294 domain
= cls
._fromast
(node
.operand
)
295 if isinstance(node
.operand
, ast
.invert
):
297 elif isinstance(node
, ast
.BinOp
):
298 domain1
= cls
._fromast
(node
.left
)
299 domain2
= cls
._fromast
(node
.right
)
300 if isinstance(node
.op
, ast
.BitAnd
):
301 return And(domain1
, domain2
)
302 elif isinstance(node
.op
, ast
.BitOr
):
303 return Or(domain1
, domain2
)
304 elif isinstance(node
, ast
.Compare
):
307 left
= Expression
._fromast
(node
.left
)
308 for i
in range(len(node
.ops
)):
310 right
= Expression
._fromast
(node
.comparators
[i
])
311 if isinstance(op
, ast
.Lt
):
312 inequalities
.append(right
- left
- 1)
313 elif isinstance(op
, ast
.LtE
):
314 inequalities
.append(right
- left
)
315 elif isinstance(op
, ast
.Eq
):
316 equalities
.append(left
- right
)
317 elif isinstance(op
, ast
.GtE
):
318 inequalities
.append(left
- right
)
319 elif isinstance(op
, ast
.Gt
):
320 inequalities
.append(left
- right
- 1)
325 return Polyhedron(equalities
, inequalities
)
326 raise SyntaxError('invalid syntax')
328 _RE_BRACES
= re
.compile(r
'^\{\s*|\s*\}$')
329 _RE_EQ
= re
.compile(r
'([^<=>])=([^<=>])')
330 _RE_AND
= re
.compile(r
'\band\b|,|&&|/\\|∧|∩')
331 _RE_OR
= re
.compile(r
'\bor\b|;|\|\||\\/|∨|∪')
332 _RE_NOT
= re
.compile(r
'\bnot\b|!|¬')
333 _RE_NUM_VAR
= Expression
._RE
_NUM
_VAR
334 _RE_OPERATORS
= re
.compile(r
'(&|\||~)')
337 def fromstring(cls
, string
):
338 # remove curly brackets
339 string
= cls
._RE
_BRACES
.sub(r
'', string
)
340 # replace '=' by '=='
341 string
= cls
._RE
_EQ
.sub(r
'\1==\2', string
)
342 # replace 'and', 'or', 'not'
343 string
= cls
._RE
_AND
.sub(r
' & ', string
)
344 string
= cls
._RE
_OR
.sub(r
' | ', string
)
345 string
= cls
._RE
_NOT
.sub(r
' ~', string
)
346 # add implicit multiplication operators, e.g. '5x' -> '5*x'
347 string
= cls
._RE
_NUM
_VAR
.sub(r
'\1*\2', string
)
348 # add parentheses to force precedence
349 tokens
= cls
._RE
_OPERATORS
.split(string
)
350 for i
, token
in enumerate(tokens
):
352 token
= '({})'.format(token
)
354 string
= ''.join(tokens
)
355 tree
= ast
.parse(string
, 'eval')
356 return cls
._fromast
(tree
)
359 assert len(self
.polyhedra
) >= 2
360 strings
= [repr(polyhedron
) for polyhedron
in self
.polyhedra
]
361 return 'Or({})'.format(', '.join(strings
))
364 def fromsympy(cls
, expr
):
366 from .polyhedra
import Lt
, Le
, Eq
, Ne
, Ge
, Gt
368 sympy
.And
: And
, sympy
.Or
: Or
, sympy
.Not
: Not
,
369 sympy
.Lt
: Lt
, sympy
.Le
: Le
,
370 sympy
.Eq
: Eq
, sympy
.Ne
: Ne
,
371 sympy
.Ge
: Ge
, sympy
.Gt
: Gt
,
373 if expr
.func
in funcmap
:
374 args
= [Domain
.fromsympy(arg
) for arg
in expr
.args
]
375 return funcmap
[expr
.func
](*args
)
376 elif isinstance(expr
, sympy
.Expr
):
377 return Expression
.fromsympy(expr
)
378 raise ValueError('non-domain expression: {!r}'.format(expr
))
382 polyhedra
= [polyhedron
.tosympy() for polyhedron
in polyhedra
]
383 return sympy
.Or(*polyhedra
)
387 if len(domains
) == 0:
388 from .polyhedra
import Universe
391 return domains
[0].intersection(*domains
[1:])
394 if len(domains
) == 0:
395 from .polyhedra
import Empty
398 return domains
[0].union(*domains
[1:])