Subject | Hash | Author | Date (UTC) |
---|---|---|---|
dicebox.circumtri.CirQTri.get_circum_node: limit circumcenter by explore radius, not by just R | 136ec73bb06da16c1f2bce64b3c349be4c8ba975 | I am | 2023-02-09 03:09:51 |
dicebox.circumtri: implement new brand CirQTri box | 5879b8ad6317c65aa9481b59f76b6159f19e247a | I am | 2023-02-09 01:29:10 |
simplex.FullCubatureIntegration: store simplex probabilities in sorted dicts | c0da90731ff3ede47d9b4eec0ad9b28a29027167 | I am | 2023-02-09 01:23:14 |
dicebox.circumtri: exploratory: even better idea | 811ab11cd7172ff4a3807992f4928be2e8068ec0 | I am | 2023-02-08 15:31:23 |
dicebox.circumtri: exploratory, new idea | 526d3f6185887ff48a341b0705d74dde4d15ca87 | I am | 2023-02-08 03:03:41 |
dicebox.circumtri: exploratory | 806063d2e223c812280dc4845153450dd47faed3 | I am | 2023-02-06 17:15:15 |
dicebox.circumtri: exploratory | efed2589f642d502f30e80f0e9b45dfeecd1c7c7 | I am | 2023-02-06 13:40:24 |
dicebox.circumtri: exploratory - again | 34d3f4e47420e1c1e26b09570fb44d3270194751 | I am | 2023-02-06 12:50:45 |
qt_gui.qt_dicebox: change default q of circumtri classes | 9fd5855e5d7cacf80d27fb383dd18a92d60e138b | I am | 2023-02-06 12:30:27 |
dicebox.circumtri: tune up exploratory rule one more time | bfaa8d65bd13956252a6a25382c621aca7a33e3f | I am | 2023-02-06 12:05:00 |
convex_hull.QHull.is_outside: mark everything as outside until convex hull is created | beecd924a63603868807a8a603cbeb04857e5cde | I am | 2023-02-06 12:03:35 |
dicebox.circumtri: get_exploratory_radius: turn it up some more | ecd638ca90bac88df515cf803a103e350b08041e | I am | 2023-02-03 10:58:37 |
mplot: ongoing ad-hoc changes | fd71b93abee959231ffd76324cf2fbc0b3bbbdfe | I am | 2023-02-02 17:59:27 |
dicebox.circumtri: change default q setting | 2a9bdc6604113462a935d409bca429b49ac52cbc | I am | 2023-02-02 11:55:41 |
dicebox.circumtri: minor change in explore radia | 9aa06dc11be7c935dd47715c0aa53b401be951d4 | I am | 2023-02-01 23:37:13 |
dicebox.circumtri: exploratory: another iteration | 78c849a2c1b07a55f87d32e3cd6570db222a50b6 | I am | 2023-02-01 01:02:00 |
dicebox: new experimental explore() | 1d570ef1dcc66b9b1015bd6c1f6877e1405e676c | I am | 2023-02-01 00:34:57 |
mplot: improve GRaph; draw vertex estimator only in convergence diagram | 5c22e808e4c6cabd8e0d077d5f295eea93957582 | I am | 2023-01-31 18:02:00 |
simplex.TopologyAnalysis: implement postprocessing | 5b8d6c87bd18e06e2e3e1aa651ebccc6d9ed2e69 | I am | 2023-01-30 20:59:59 |
testcases.testcases_nD_papers: add low pf nonlinear oscillator setting | 4a75d5ec830f88c35a91e53898e416e568e3913c | I am | 2023-01-30 16:13:17 |
File | Lines added | Lines deleted |
---|---|---|
wellmet/dicebox/circumtri.py | 3 | 2 |
File wellmet/dicebox/circumtri.py changed (mode: 100644) (index c1aa60d..d633298) | |||
... | ... | class CirQTri(_CircumTri): | |
417 | 417 | raise | raise |
418 | 418 | ||
419 | 419 | length2 = np.sum(np.square(circum_center)) | length2 = np.sum(np.square(circum_center)) |
420 | if length2 > bx.pf_estimation.R**2: | ||
420 | R = bx.get_exploratory_radius() | ||
421 | if length2 > R**2: | ||
421 | 422 | bx._logger(circum_center, | bx._logger(circum_center, |
422 | 423 | msg='Circumcenter lies too far away from the origin. The radial distance is reduced') | msg='Circumcenter lies too far away from the origin. The radial distance is reduced') |
423 | 424 | circum_center /= np.sqrt(length2) | circum_center /= np.sqrt(length2) |
424 | circum_center *= bx.get_exploratory_radius() | ||
425 | circum_center *= R | ||
425 | 426 | ||
426 | 427 | circum_node = bx.f_model.new_sample(circum_center, space=bx.tri_space) | circum_node = bx.f_model.new_sample(circum_center, space=bx.tri_space) |
427 | 428 | return circum_node | return circum_node |