File wellmet/simplex.py changed (mode: 100644) (index f90847c..af2c23e) |
... |
... |
class _Sense: |
285 |
285 |
self.failsi = sx.sample_box.failsi |
self.failsi = sx.sample_box.failsi |
286 |
286 |
self.non_failsi = ~self.failsi |
self.non_failsi = ~self.failsi |
287 |
287 |
self._point_mask = np.empty_like(self.failsi) |
self._point_mask = np.empty_like(self.failsi) |
288 |
|
self._scalars = np.empty(len(self.failsi)) |
|
|
288 |
|
#self._scalars = np.empty(len(self.failsi)) |
289 |
289 |
self._boolmask = np.empty_like(self.failsi) |
self._boolmask = np.empty_like(self.failsi) |
290 |
290 |
|
|
291 |
291 |
|
|
|
... |
... |
class _Sense: |
371 |
371 |
# in case of separation axis |
# in case of separation axis |
372 |
372 |
# i.e. we should ignore it anyway |
# i.e. we should ignore it anyway |
373 |
373 |
depth = depths[simplex_id] |
depth = depths[simplex_id] |
374 |
|
if depth: |
|
375 |
|
vector = vectors[simplex_id] |
|
|
374 |
|
if simplex_id in vectors: |
|
375 |
|
vector, scalars = vectors[simplex_id] |
376 |
376 |
else: |
else: |
377 |
377 |
vector = sx.get_simplex_normal(indices)[:-1] |
vector = sx.get_simplex_normal(indices)[:-1] |
|
378 |
|
scalars = None |
378 |
379 |
|
|
379 |
|
scope, normal = self.process_simplex(simplex_id, depth, vector) |
|
|
380 |
|
scope, normal, scalars = self.process_simplex(simplex_id, depth, vector, scalars) |
380 |
381 |
|
|
381 |
382 |
# scale to unit length |
# scale to unit length |
382 |
383 |
length = np.sqrt(np.inner(normal, normal)) |
length = np.sqrt(np.inner(normal, normal)) |
|
... |
... |
class _Sense: |
388 |
389 |
global_gradient += normal * p_mixed |
global_gradient += normal * p_mixed |
389 |
390 |
sensitivities += np.square(normal) * p_mixed |
sensitivities += np.square(normal) * p_mixed |
390 |
391 |
|
|
|
392 |
|
#č tak. Teď do projděných simplexu píšeme jen vektor, |
|
393 |
|
#č do těch, co ještě musíme projít - vektor a skalární součin |
391 |
394 |
vectors[simplex_id] = normal |
vectors[simplex_id] = normal |
392 |
395 |
new_depth = scope[simplex_id] |
new_depth = scope[simplex_id] |
393 |
396 |
depths[simplex_id] = new_depth |
depths[simplex_id] = new_depth |
394 |
397 |
|
|
395 |
398 |
if new_depth > depth: |
if new_depth > depth: |
396 |
399 |
for id, new_depth in scope.items(): |
for id, new_depth in scope.items(): |
397 |
|
if (id > simplex_id) and (new_depth > depths[id]): |
|
398 |
|
vectors[id] = normal |
|
|
400 |
|
if (id > simplex_id) and (new_depth >= depths[id]): |
|
401 |
|
vectors[id] = normal, scalars |
399 |
402 |
depths[id] = new_depth |
depths[id] = new_depth |
400 |
403 |
|
|
401 |
404 |
|
|
|
... |
... |
class _Sense: |
415 |
418 |
|
|
416 |
419 |
|
|
417 |
420 |
|
|
418 |
|
def is_separable(self, vector, point_mask): |
|
|
421 |
|
def is_separable(self, scalars, point_mask): |
419 |
422 |
#č postup se míří na 5-6D, |
#č postup se míří na 5-6D, |
420 |
423 |
#č kde je mou snahou zbytečně nealokovat |
#č kde je mou snahou zbytečně nealokovat |
421 |
424 |
#č na každém kolečku |
#č na každém kolečku |
422 |
|
scalars = self._scalars |
|
|
425 |
|
#scalars = self._scalars |
423 |
426 |
#č vector je již bez poslední složky |
#č vector je již bez poslední složky |
424 |
|
np.matmul(self.points, vector, out=scalars) |
|
|
427 |
|
#np.matmul(self.points, vector, out=scalars) |
425 |
428 |
mask = self._boolmask |
mask = self._boolmask |
426 |
429 |
|
|
427 |
430 |
np.logical_and(point_mask, self.failsi, out=mask) |
np.logical_and(point_mask, self.failsi, out=mask) |
|
... |
... |
class _Sense: |
444 |
447 |
return max_red < min_green |
return max_red < min_green |
445 |
448 |
|
|
446 |
449 |
|
|
447 |
|
def process_simplex(self, simplex_id, depth, vector): |
|
|
450 |
|
def process_simplex(self, simplex_id, depth, vector, scalars): |
448 |
451 |
# self for this class, sensitivity-related things |
# self for this class, sensitivity-related things |
449 |
452 |
# sx for general Triangulation class related attributes |
# sx for general Triangulation class related attributes |
450 |
453 |
sx = self |
sx = self |
451 |
454 |
|
|
|
455 |
|
points = self.points |
452 |
456 |
|
|
453 |
457 |
local_scope = self._local_scope |
local_scope = self._local_scope |
454 |
458 |
local_scope.clear() |
local_scope.clear() |
|
... |
... |
class _Sense: |
506 |
510 |
npoints_before, npoints_now = npoints_now, np.count_nonzero(point_mask) |
npoints_before, npoints_now = npoints_now, np.count_nonzero(point_mask) |
507 |
511 |
#if npoints_now == npoints_before: print("Sense: no new points to separate") |
#if npoints_now == npoints_before: print("Sense: no new points to separate") |
508 |
512 |
if npoints_now > npoints_before: |
if npoints_now > npoints_before: |
509 |
|
if not self.is_separable(vector, point_mask): |
|
|
513 |
|
if scalars is None: |
|
514 |
|
scalars = np.matmul(points, vector) |
|
515 |
|
if not self.is_separable(scalars, point_mask): |
510 |
516 |
result = self.get_separation_axis(point_mask) |
result = self.get_separation_axis(point_mask) |
511 |
517 |
if not result.success: #č konec, zde končíme |
if not result.success: #č konec, zde končíme |
512 |
518 |
if result.status != 2: # Problem appears to be infeasible. |
if result.status != 2: # Problem appears to be infeasible. |
513 |
519 |
print("Sense: linprog ended with status %s" % result.status) |
print("Sense: linprog ended with status %s" % result.status) |
514 |
|
return local_scope, vector |
|
|
520 |
|
return local_scope, vector, scalars |
515 |
521 |
|
|
516 |
522 |
#č hned odřízneme poslední složku - |
#č hned odřízneme poslední složku - |
517 |
523 |
#č bude tam posunutí b aka offcet aka bias |
#č bude tam posunutí b aka offcet aka bias |
518 |
524 |
vector = result.x[:-1] |
vector = result.x[:-1] |
|
525 |
|
scalars = None |
519 |
526 |
|
|
520 |
527 |
#č pokud jsme tu, tak vzorky byly separabilní, |
#č pokud jsme tu, tak vzorky byly separabilní, |
521 |
528 |
#č je na čase "navysit" hloubku |
#č je na čase "navysit" hloubku |
|
... |
... |
class _Sense: |
526 |
533 |
to_parse -= local_scope.keys() |
to_parse -= local_scope.keys() |
527 |
534 |
|
|
528 |
535 |
|
|
529 |
|
return local_scope, vector |
|
|
536 |
|
return local_scope, vector, scalars |
530 |
537 |
|
|
531 |
538 |
|
|
532 |
539 |
|
|