File wellmet/simplex.py changed (mode: 100644) (index 78b03d6..a8edf6e) |
... |
... |
class _Sense: |
298 |
298 |
self.A_ub[:, -1] = self.b_ub |
self.A_ub[:, -1] = self.b_ub |
299 |
299 |
self.A_ub *= (self.failsi * 2 - 1).reshape(-1, 1) |
self.A_ub *= (self.failsi * 2 - 1).reshape(-1, 1) |
300 |
300 |
|
|
|
301 |
|
simplices = sx.tri.simplices |
|
302 |
|
self.mixed_mask = mixed_mask = sx.is_mixed(simplices) |
301 |
303 |
|
|
302 |
304 |
event_ids = np.empty(sx.tri.nsimplex + 1, dtype=np.int8) |
event_ids = np.empty(sx.tri.nsimplex + 1, dtype=np.int8) |
303 |
305 |
event_ids[:-1] = sx.get_events() |
event_ids[:-1] = sx.get_events() |
304 |
306 |
event_ids[-1] = -1 |
event_ids[-1] = -1 |
305 |
307 |
|
|
306 |
|
self.neighbors_mask = event_ids[sx.tri.neighbors] == 2 |
|
|
308 |
|
neighbors = sx.tri.neighbors |
|
309 |
|
neighbors_mask = event_ids[neighbors] == 2 |
|
310 |
|
|
|
311 |
|
#č v těch otačkách budeme potřebovat pořad dokola |
|
312 |
|
self.neighbors_masked = neighbors_masked = dict() #defaultdict(list) |
|
313 |
|
zip_iter = zip(range(len(mixed_mask)), mixed_mask, neighbors, neighbors_mask) |
|
314 |
|
for id, is_mixed, neis, neis_mask in zip_iter: |
|
315 |
|
if not is_mixed: |
|
316 |
|
continue |
|
317 |
|
|
|
318 |
|
neighbors_masked[id] = neis[neis_mask] |
307 |
319 |
|
|
308 |
320 |
|
|
309 |
321 |
|
|
|
... |
... |
class _Sense: |
331 |
343 |
self._init() |
self._init() |
332 |
344 |
|
|
333 |
345 |
simplices = sx.tri.simplices |
simplices = sx.tri.simplices |
334 |
|
mixed_mask = sx.is_mixed(simplices) |
|
|
346 |
|
mixed_mask = self.mixed_mask |
335 |
347 |
#nmixed = np.count_nonzero(mixed_mask) |
#nmixed = np.count_nonzero(mixed_mask) |
336 |
348 |
|
|
337 |
349 |
|
|
|
... |
... |
class _Sense: |
449 |
461 |
parsed.clear() |
parsed.clear() |
450 |
462 |
|
|
451 |
463 |
simplices = sx.tri.simplices |
simplices = sx.tri.simplices |
452 |
|
neighbors = sx.tri.neighbors |
|
453 |
|
neighbors_mask = self.neighbors_mask |
|
|
464 |
|
neighbors_masked = self.neighbors_masked |
454 |
465 |
|
|
455 |
466 |
point_mask = self._point_mask |
point_mask = self._point_mask |
456 |
467 |
point_mask[:] = False |
point_mask[:] = False |
457 |
468 |
|
|
458 |
|
to_parse.update(neighbors[simplex_id][neighbors_mask[simplex_id]]) |
|
|
469 |
|
to_parse.update(neighbors_masked[simplex_id]) |
459 |
470 |
point_mask[simplices[simplex_id]] = True |
point_mask[simplices[simplex_id]] = True |
460 |
471 |
|
|
461 |
472 |
for __i in range(depth): |
for __i in range(depth): |
|
... |
... |
class _Sense: |
466 |
477 |
to_parse, parsed = parsed, to_parse |
to_parse, parsed = parsed, to_parse |
467 |
478 |
to_parse.clear() |
to_parse.clear() |
468 |
479 |
for id in parsed: # meant to be parsed in the cycle's end |
for id in parsed: # meant to be parsed in the cycle's end |
469 |
|
to_parse.update(neighbors[id][neighbors_mask[id]]) |
|
|
480 |
|
to_parse.update(neighbors_masked[id]) |
470 |
481 |
point_mask[simplices[id]] = True |
point_mask[simplices[id]] = True |
471 |
482 |
local_scope[id] = 0 |
local_scope[id] = 0 |
472 |
483 |
|
|
|
... |
... |
class _Sense: |
474 |
485 |
assert local_scope[simplex_id] == depth |
assert local_scope[simplex_id] == depth |
475 |
486 |
|
|
476 |
487 |
npoints_now = np.count_nonzero(point_mask) |
npoints_now = np.count_nonzero(point_mask) |
477 |
|
assert self.is_separable(vector, point_mask) |
|
|
488 |
|
#assert self.is_separable(vector, point_mask) |
478 |
489 |
|
|
479 |
490 |
#č běh smyčky je podmíněn tím, že má co dělat |
#č běh smyčky je podmíněn tím, že má co dělat |
480 |
491 |
to_parse -= local_scope.keys() |
to_parse -= local_scope.keys() |
|
... |
... |
class _Sense: |
485 |
496 |
to_parse, parsed = parsed, to_parse |
to_parse, parsed = parsed, to_parse |
486 |
497 |
to_parse.clear() |
to_parse.clear() |
487 |
498 |
for id in parsed: # meant to be parsed in the cycle's end |
for id in parsed: # meant to be parsed in the cycle's end |
488 |
|
to_parse.update(neighbors[id][neighbors_mask[id]]) |
|
|
499 |
|
to_parse.update(neighbors_masked[id]) |
489 |
500 |
point_mask[simplices[id]] = True |
point_mask[simplices[id]] = True |
490 |
501 |
local_scope[id] = -1 |
local_scope[id] = -1 |
491 |
502 |
|
|