Subject | Hash | Author | Date (UTC) |
---|---|---|---|
dicebox.circumtri: estimation export hotfix | 4f86660297b643446bacd3e254ded9faca148542 | I am | 2023-01-24 15:02:34 |
dicebox.circumtri: assemble QTri box | 9e2114c0c6d5defcf3509a30fda3b6230eb9b9d1 | I am | 2023-01-24 14:48:48 |
dicebox._exploration: rework explore() | af54a2693f6da4d874ade55f02990c87ed7ce9c7 | I am | 2023-01-24 09:54:51 |
convex_hull.QHull: implement erfc and gammaincc-based outside integrations for now | ad0a665b53b6c8ca24a215c0e4ca73a5c1d145ad | I am | 2023-01-23 19:29:09 |
convex_hull.QHull: accept integrational crime | 788f3ffe604a4cac9d19382250dd5ebe3cd5befc | I am | 2023-01-21 13:09:31 |
convex_hull.QHull: normal fix | 083bbdc4cb41fdb3e357b1d0359705a2a65d6d27 | I am | 2023-01-20 19:07:17 |
convex_hull.QHull: implement chi cubature integration | 7537b642967b7dd5d8475c20aff2a930a5bcd3ad | I am | 2023-01-20 15:54:05 |
convex_hull: implement QHullCubature class | 6f1b51ba6fe281f7cae4f44889db96787d916a99 | I am | 2023-01-20 10:46:54 |
convex_hull.QHull: add proof-of-concept get_inside() method | 6013fbac742d6070771d7798c928538ebc54495e | I am | 2023-01-19 10:19:32 |
whitebox: add r exact for common nD boxes | 7c4ab62f069f0efeb48a403dac5d27033003ded2 | I am | 2023-01-17 15:09:08 |
qt_gui: improve GRaph to show r-R bounds | 59fa5bde7be2197b1f739bd1f829f927cef62603 | I am | 2023-01-17 14:26:16 |
dicebox.circumtri: calculate event's radia | c6868cfbde7c8a86b73217da544f60e94a117bd8 | I am | 2023-01-16 06:12:34 |
simplex.Triangulation.get_averaged_mixed_normals: implement deep averaging | 6dfb056e477479331c7a903ea52a98301fca4e71 | I am | 2023-01-15 23:26:43 |
replace flatten() by reshape(-1) everywhere. The former always allocates new array | 97b35c989a5ad8e459bb60133222d50c7f78e1f0 | I am | 2023-01-15 12:04:30 |
qt_gui.qt_gui: explicitly export sample_box to console's namespace | dd2e50245157082ddb645b693a8a8c573215d50c | I am | 2023-01-15 11:42:01 |
replace everywhere np.bool by just bool (it looks like newer numpy dropped it) | ac208f89bbf0ad76d38790686041ea778a9b6376 | I am | 2023-01-15 11:31:56 |
simplex._Triangulation: implement averaged gradients() | f6608597cf490dd6cf1a6af3b7d8e6d0a72732d9 | I am | 2023-01-15 09:37:14 |
add line and two lines problems for sensitivity analysis | 0c620f7960399ed8b34e02d663772d0eb34e66f1 | I am | 2023-01-14 08:30:56 |
simplex.FullCubatureIntegration.get_sensitivities: do not normalize global gradient | c648c484a5599a00236ab70c36cdf407c24f5306 | I am | 2023-01-14 04:51:16 |
simplex: implement sensitivities | 65056319c51fd93deb76ce14e52c08869dfc04a2 | I am | 2023-01-13 11:27:46 |
File | Lines added | Lines deleted |
---|---|---|
wellmet/dicebox/circumtri.py | 2 | 2 |
File wellmet/dicebox/circumtri.py changed (mode: 100644) (index 1bf3cd8..25d7fc3) | |||
... | ... | class CircumTri(_CircumTri): | |
547 | 547 | #č vítejte nové uložiště odhadů. | #č vítejte nové uložiště odhadů. |
548 | 548 | #č Odhady z stm kódu už ale nemají na tohle sahat | #č Odhady z stm kódu už ale nemají na tohle sahat |
549 | 549 | if hasattr(bx, 'filename'): | if hasattr(bx, 'filename'): |
550 | bx.box_estimations = Store.create(bx.filename + "_tri", TriEstimation) | ||
550 | bx.box_estimations = Store.create(bx.filename + "_tri", bx.Estimation) | ||
551 | 551 | else: | else: |
552 | 552 | bx.box_estimations = [] | bx.box_estimations = [] |
553 | 553 | ||
... | ... | class QTri(_CircumTri): | |
691 | 691 | #č vítejte nové uložiště odhadů. | #č vítejte nové uložiště odhadů. |
692 | 692 | #č Odhady z stm kódu už ale nemají na tohle sahat | #č Odhady z stm kódu už ale nemají na tohle sahat |
693 | 693 | if hasattr(bx, 'filename'): | if hasattr(bx, 'filename'): |
694 | bx.box_estimations = Store.create(bx.filename + "_qtri", TriEstimation) | ||
694 | bx.box_estimations = Store.create(bx.filename + "_qtri", bx.Estimation) | ||
695 | 695 | else: | else: |
696 | 696 | bx.box_estimations = [] | bx.box_estimations = [] |
697 | 697 |