Subject | Hash | Author | Date (UTC) |
---|---|---|---|
dicebox.circumtri: fill in global simplex index only in case of full integration | 065668f1810396f55be0860416f1c6ad507a9573 | I am | 2023-01-04 21:44:57 |
dicebox.circumtri: implement "holyday", breaks the greatest safe simplex | 14f067d43cde14f990e7a4136b61c548f3acde92 | I am | 2023-01-04 16:28:51 |
simplex: implement FullCubatureIntegration | 072927115a8a641f89b39265085eb6cac27aa492 | I am | 2023-01-04 16:27:39 |
dicebox.circumtri: use mixed facet outside nodes as candidates only. | 03c1c974dafa8ff041f032c89149da7fc5b90b39 | I am | 2023-01-03 15:55:57 |
shell: use query() method of the convex hull | 321a3fab33684cb9bef3c2344200c6519b595bb0 | I am | 2023-01-03 15:54:45 |
convex_hull.QHull: implement query() method. Use myshovskych sheme as fallback | bc79a6fbee4d488211bf55c88702f39a0126be1b | I am | 2023-01-03 15:53:00 |
dicebox.circumtri: handle singular matrix error of CircumCenter | 8207789777268039e7a866a594191063c6429c04 | I am | 2023-01-02 23:56:40 |
simplex.CubatureIntegration: check for non-finite simplex volumes | 3a1473c7452c7dc3a9299ed88520412eb31924c1 | I am | 2023-01-02 22:51:14 |
dicebox.circumtri: return to psi potential | 9db1f5b0e412ae871ae5f5fbb5ff214a8ddd7f45 | I am | 2023-01-02 22:20:28 |
dicebox.circumtri: bughunting | 5f9d2b9e4d8077c9e4552d47bf1da789d8cfbcf8 | I am | 2022-12-29 15:02:14 |
dicebox.circumtri: process filtered integration nodes as candidates too | 315e2f9700d93f1379985dafa818b44df53422a2 | I am | 2022-12-29 13:51:52 |
dicebox.circumtri: return back weighted entropy | 0424243e29a600ecb1d046631badbc9797e11369 | I am | 2022-12-28 19:11:30 |
qt_gui.qt_graph_widgets: reflect renewed simplex estimators | 90c83c7c7e6e58d6b9044db1a5e55f9a8a7dd7cd | I am | 2022-12-28 16:15:40 |
dicebox: rework CircumTri | e360b2f092c11a42b5ac1081061f2891bff3d8de | I am | 2022-12-28 15:52:28 |
simplex: make _Triangulation more clean; rework CubatureIntegration | fb7dd9fef8592944fbd93a3f07b44c2355d45e20 | I am | 2022-12-28 15:48:20 |
introduce shell module, clean version of ghull | b13e9b2b15d109770e0c3fbdd5bb7b2a3b5bf5fc | I am | 2022-12-28 15:45:27 |
qt_gui.qt_plot.CandidatesWidget: regression fix | a75874b5a53e7b420672b582f3ff415b17a32e9b | I am | 2022-12-23 12:19:51 |
qt_gui.qt_pairwise.ContactWidget: add mask function | 6f88fec7db92e5cd21826a06f42a609a3e03cb6b | I am | 2022-12-21 15:20:01 |
qt_gui.qt_pairwise.ContactWidget: add option for mixed pairs only adjacency search. | 2f87e8a18908de607b8abc0779448ca3095c134c | I am | 2022-12-21 14:30:23 |
qt_gui.qt_dicebox: reflect changes in CircumTri class | 9821d389240a383f0b13b7dd92cd501e1c40c537 | I am | 2022-12-15 09:36:16 |
File | Lines added | Lines deleted |
---|---|---|
wellmet/dicebox/circumtri.py | 2 | 1 |
File wellmet/dicebox/circumtri.py changed (mode: 100644) (index c733b99..2fcf23d) | |||
... | ... | class FullCircumTri(_Exploration): | |
292 | 292 | ||
293 | 293 | bx.candidates_index[simplex] = result_node | bx.candidates_index[simplex] = result_node |
294 | 294 | bx.potential_index[simplex] = result_potential | bx.potential_index[simplex] = result_potential |
295 | bx.global_potential_index[simplex] = result_potential | ||
295 | if bx.holydays: | ||
296 | bx.global_potential_index[simplex] = result_potential | ||
296 | 297 | ||
297 | 298 | ||
298 | 299 |