File wellmet/dicebox/circumtri.py changed (mode: 100644) (index f357382..8290e2f) |
... |
... |
class _CircumTri(_Exploration): |
117 |
117 |
r = bx.sball.get_r(p_desired) |
r = bx.sball.get_r(p_desired) |
118 |
118 |
return r |
return r |
119 |
119 |
|
|
120 |
|
|
|
121 |
|
|
|
122 |
|
|
|
123 |
|
|
|
124 |
|
|
|
125 |
|
|
|
126 |
|
|
|
127 |
|
|
|
128 |
|
|
|
129 |
|
|
|
130 |
|
|
|
131 |
|
def _regen_inside(bx): |
|
132 |
|
failsi = bx.failsi |
|
133 |
|
# incremental triangulation require one more point |
|
134 |
|
if (bx.nsim > bx.nvar + 1) and np.any(failsi) and not np.all(failsi): |
|
135 |
|
#bx._logger(msg="triangulation started") |
|
136 |
|
bx.__regen_inside() |
|
137 |
|
else: |
|
138 |
|
#č jíž není nutný |
|
139 |
|
bx._logger(msg="triangulation skipped") |
|
140 |
|
|
|
141 |
|
def __regen_inside(bx): |
|
142 |
|
try: |
|
143 |
|
if bx.holydays: |
|
144 |
|
Integrator = sx.FullCubatureIntegration |
|
145 |
|
else: |
|
146 |
|
Integrator = sx.FastCubatureIntegration |
|
147 |
|
|
|
148 |
|
bx.Tri = Integrator(bx.samplebox, bx.scheme,\ |
|
149 |
|
tri_space=bx.tri_space, incremental=True,\ |
|
150 |
|
on_safe_added=bx._on_safe_added,\ |
|
151 |
|
on_mixed_added=bx._on_mixed_added,\ |
|
152 |
|
on_delete_simplex=bx._invalidate_simplex) |
|
153 |
|
|
|
154 |
|
bx.Tri.integrate() # nic nevrácí, všecko je přes kolbeky |
|
155 |
|
#č tri - Deloneho triangulace |
|
156 |
|
bx.tri = bx.Tri.tri #č všichní tam očekávajou QHull |
|
157 |
|
bx._logger(msg="triangulation has been created") |
|
158 |
|
|
|
159 |
|
except BaseException as e: |
|
160 |
|
#č chcu zachytit spadnuti QHull na začatku, |
|
161 |
|
#č kdy ještě není dostatek teček. |
|
162 |
|
#č Jinak je třeba nechat QHull spadnout |
|
163 |
|
if bx.nsim > 2*bx.nvar + 3: |
|
164 |
|
#č no to teda ne! |
|
165 |
|
raise |
|
166 |
|
else: |
|
167 |
|
#č lze přípustit chybu triangulace |
|
168 |
|
bx._logger(msg='triangulation failed') |
|
169 |
|
|
|
170 |
120 |
|
|
171 |
121 |
def is_mixed(bx, simplices=None): |
def is_mixed(bx, simplices=None): |
172 |
122 |
|
|
|
... |
... |
class CirQTri(_CircumTri): |
404 |
354 |
return bx.shell_estimation[1:] |
return bx.shell_estimation[1:] |
405 |
355 |
|
|
406 |
356 |
|
|
407 |
|
def get_circum_node(bx, simplex): |
|
408 |
|
indices = np.array(simplex) |
|
|
357 |
|
def _regen_inside(bx): |
|
358 |
|
failsi = bx.failsi |
|
359 |
|
# incremental triangulation require one more point |
|
360 |
|
if (bx.nsim > bx.nvar + 1) and np.any(failsi) and not np.all(failsi): |
|
361 |
|
try: |
|
362 |
|
bx.Tri = sx.GaussCubatureIntegration(bx.samplebox, bx.scheme, |
|
363 |
|
incremental=True, full=bx.holydays) |
|
364 |
|
|
|
365 |
|
#č tri - Deloneho triangulace |
|
366 |
|
bx.tri = bx.Tri.tri #č všichni tam očekávají QHull |
|
367 |
|
bx._logger(msg="triangulation has been created") |
|
368 |
|
|
|
369 |
|
except BaseException as e: |
|
370 |
|
#č chcu zachytit spadnuti QHull na začatku, |
|
371 |
|
#č kdy ještě není dostatek teček. |
|
372 |
|
#č Jinak je třeba nechat QHull spadnout |
|
373 |
|
if bx.nsim > 2*bx.nvar + 3: |
|
374 |
|
#č no to teda ne! |
|
375 |
|
raise |
|
376 |
|
else: |
|
377 |
|
#č lze přípustit chybu triangulace |
|
378 |
|
bx._logger(msg='triangulation failed') |
|
379 |
|
else: |
|
380 |
|
#č jíž není nutný |
|
381 |
|
bx._logger(msg="triangulation skipped") |
|
382 |
|
|
|
383 |
|
|
|
384 |
|
def get_circum_node(bx, indices): |
409 |
385 |
vertices_model = bx.Tri.tri.points[indices] |
vertices_model = bx.Tri.tri.points[indices] |
410 |
386 |
try: |
try: |
411 |
387 |
circum_center = bx.CC.get_circumcenter(vertices_model) |
circum_center = bx.CC.get_circumcenter(vertices_model) |
|
... |
... |
class CirQTri(_CircumTri): |
431 |
407 |
def refine(bx): |
def refine(bx): |
432 |
408 |
if "Tri" in dir(bx): |
if "Tri" in dir(bx): |
433 |
409 |
# get the greatest mixed simplex |
# get the greatest mixed simplex |
434 |
|
key, __value = bx.Tri.mixed_simplex_probabilities.peekitem() |
|
435 |
|
return bx.get_circum_node(key) |
|
|
410 |
|
return bx.get_circum_node(bx.Tri.max_mixed_indices) |
436 |
411 |
else: |
else: |
437 |
412 |
bx._logger(msg='refine called, but triangulation does not exist yet. Fallback to a random sample') |
bx._logger(msg='refine called, but triangulation does not exist yet. Fallback to a random sample') |
438 |
413 |
return bx.f_model(1) |
return bx.f_model(1) |
439 |
414 |
|
|
440 |
415 |
|
|
441 |
416 |
def holyday(bx): |
def holyday(bx): |
442 |
|
if "Tri" in dir(bx) and len(bx.Tri.safe_simplex_probabilities): |
|
443 |
|
# return node with the greatest potential |
|
444 |
|
key, __value = bx.Tri.safe_simplex_probabilities.peekitem() |
|
445 |
|
return bx.get_circum_node(key) |
|
|
417 |
|
if "Tri" in dir(bx) and (bx.Tri.max_safe > 0): |
|
418 |
|
return bx.get_circum_node(bx.Tri.max_safe_indices) |
446 |
419 |
else: |
else: |
447 |
420 |
bx._logger(msg='Fallback to random sample') |
bx._logger(msg='Fallback to random sample') |
448 |
421 |
return bx.f_model(1) |
return bx.f_model(1) |
|
... |
... |
class CirQTri(_CircumTri): |
471 |
444 |
|
|
472 |
445 |
def get_max_potential(bx): |
def get_max_potential(bx): |
473 |
446 |
if "Tri" in dir(bx): |
if "Tri" in dir(bx): |
474 |
|
# get the greatest mixed simplex |
|
475 |
|
__key, value = bx.Tri.mixed_simplex_probabilities.peekitem() |
|
476 |
|
return value |
|
|
447 |
|
# get probability of the greatest mixed simplex |
|
448 |
|
return bx.Tri.max_mixed |
477 |
449 |
else: |
else: |
478 |
450 |
return -1 |
return -1 |
479 |
451 |
|
|
|
... |
... |
class CirQTri(_CircumTri): |
481 |
453 |
bx.to_explore = stats.norm.sf(bx.pf_estimation.r) |
bx.to_explore = stats.norm.sf(bx.pf_estimation.r) |
482 |
454 |
bx.to_refine = bx.get_max_potential() |
bx.to_refine = bx.get_max_potential() |
483 |
455 |
|
|
484 |
|
|
|
485 |
|
#č teď je to kolbek, který volá Triangulation |
|
486 |
|
def _on_safe_added(bx, simplex, indices, vertices_model, nodes, vol): |
|
487 |
|
pass |
|
488 |
|
|
|
489 |
|
|
|
490 |
|
#č teď je to kolbek, který volá Triangulation |
|
491 |
|
def _on_mixed_added(bx, simplex, indices, vertices_model, nodes, _vol, fr, wfr, _mfpdf): |
|
492 |
|
pass |
|
493 |
|
|
|
494 |
|
# callback |
|
495 |
|
#č sx.on_delete_simplex(indices=indices) |
|
496 |
|
def _invalidate_simplex(bx, simplex): |
|
497 |
|
pass |
|
498 |
|
|
|
499 |
456 |
|
|
500 |
457 |
def increment(bx, input_sample): |
def increment(bx, input_sample): |
501 |
458 |
#č tri - Deloneho triangulace |
#č tri - Deloneho triangulace |
|
... |
... |
class _PsiTri: |
560 |
517 |
bx._nsim = bx.nsim |
bx._nsim = bx.nsim |
561 |
518 |
|
|
562 |
519 |
|
|
|
520 |
|
def _regen_inside(bx): |
|
521 |
|
failsi = bx.failsi |
|
522 |
|
# incremental triangulation require one more point |
|
523 |
|
if (bx.nsim > bx.nvar + 1) and np.any(failsi) and not np.all(failsi): |
|
524 |
|
#bx._logger(msg="triangulation started") |
|
525 |
|
bx.__regen_inside() |
|
526 |
|
else: |
|
527 |
|
#č jíž není nutný |
|
528 |
|
bx._logger(msg="triangulation skipped") |
|
529 |
|
|
|
530 |
|
def __regen_inside(bx): |
|
531 |
|
try: |
|
532 |
|
if bx.holydays: |
|
533 |
|
Integrator = sx.FullCubatureIntegration |
|
534 |
|
else: |
|
535 |
|
Integrator = sx.FastCubatureIntegration |
|
536 |
|
|
|
537 |
|
bx.Tri = Integrator(bx.samplebox, bx.scheme,\ |
|
538 |
|
tri_space=bx.tri_space, incremental=True,\ |
|
539 |
|
on_safe_added=bx._on_safe_added,\ |
|
540 |
|
on_mixed_added=bx._on_mixed_added,\ |
|
541 |
|
on_delete_simplex=bx._invalidate_simplex) |
|
542 |
|
|
|
543 |
|
bx.Tri.integrate() # nic nevrácí, všecko je přes kolbeky |
|
544 |
|
#č tri - Deloneho triangulace |
|
545 |
|
bx.tri = bx.Tri.tri #č všichní tam očekávajou QHull |
|
546 |
|
bx._logger(msg="triangulation has been created") |
|
547 |
|
|
|
548 |
|
except BaseException as e: |
|
549 |
|
#č chcu zachytit spadnuti QHull na začatku, |
|
550 |
|
#č kdy ještě není dostatek teček. |
|
551 |
|
#č Jinak je třeba nechat QHull spadnout |
|
552 |
|
if bx.nsim > 2*bx.nvar + 3: |
|
553 |
|
#č no to teda ne! |
|
554 |
|
raise |
|
555 |
|
else: |
|
556 |
|
#č lze přípustit chybu triangulace |
|
557 |
|
bx._logger(msg='triangulation failed') |
|
558 |
|
|
563 |
559 |
def get_max_potential(bx): |
def get_max_potential(bx): |
564 |
560 |
if len(bx.candidates_index): |
if len(bx.candidates_index): |
565 |
561 |
__key, max_potential = bx.potential_index.peekitem() |
__key, max_potential = bx.potential_index.peekitem() |