Subject | Hash | Author | Date (UTC) |
---|---|---|---|
qt_gui: allow zero degree for cubature schemes | ed4cf50cdbf382999ef9e161dbec0e97ed508739 | I am | 2021-12-22 11:52:03 |
simplex: teď budeme hlídát aby vysledek integrace nebyl záporný | 173727edac0fb6611aaa2da2ed0d200a7377a2a4 | I am | 2021-12-22 08:31:01 |
dicebox: comment out our favorite print debug | 2963588b1d47a8c35a0c3ae8c611427ecbb3a843 | I am | 2021-12-22 08:30:16 |
mplot.mart: use fancy arrows instead of triangle markers | ac42eaf4b8e12037720601d2335d44ae0b057feb | I am | 2021-12-22 04:32:06 |
mplot: use the same global settings for both TeX and nonTeX plots | 3aab574123f38a35557e5c018b2e947da7feca0a | I am | 2021-12-22 04:22:58 |
mplot.misc: do not import pyplot | 9072d3b25e614763a5904e1f6b14b8bf495834fa | I am | 2021-12-22 04:21:25 |
dicebox.Goal: add additional stats. Jsou to věci, které člověk by chtěl vědět. | 45e8296c954705ca30c311e43e570c82c2f5113d | I am | 2021-12-20 02:49:15 |
dicebox: pochybná optimizace výběru kandidatů s použitím vlastního slovníku. Pořádně bych musel překopat celý DiceBox. | 0f30c4301a1f2b40556a9c84ee4b8c53638a6571 | I am | 2021-12-19 20:33:43 |
simplex: bottleneck optimization. Překopal jsem triangulation.update() | 3a110baebb237b3f99ec338c2b19f375cdcb5819 | Aleksei Gerasimov | 2021-12-13 15:31:38 |
convex_hull: improve orth estimator. Brat ndim nejbližších hyperrovin. Funguje dobře. Co vidím, numpy hlídá ortogonalitu, za mě cajk. | e29b374abde5e3e35dd22f327dc709927411a7b5 | I am | 2021-12-13 00:09:59 |
simplex: optimize simplex validation a little bit | 1473f72432e93bc349e34c1a7a8ed25ce96c08fd | I am | 2021-12-11 22:05:10 |
mplot: apply recommened tex settings | 48b0ce9931157494afd340d9bf02a763c75b65ec | I am | 2021-12-05 13:23:15 |
qt_gui.qt_plot: rework cubature selection | 17691c7770acdef9e862e21d62b4abbd4fee391c | Aleksei Gerasimov | 2021-11-30 13:36:34 |
qt_plot: import cubature schemes (regression fix) | e9fe073ebd2da613e834cda1fc154d8ed7455cad | Aleksei Gerasimov | 2021-11-30 12:30:48 |
qt_gui: show tree space instead of just (unclear even for me) "potential space" | 98b485ab34d7c47e3d4bcbb827589b86d0356538 | Aleksei Gerasimov | 2021-11-30 12:27:32 |
dicebox: print P coordinates of orphan candidates | ac5ea313e0e542436cb8685a2cff3e241bd57e59 | Aleksei Gerasimov | 2021-11-30 12:26:36 |
simplex: check cubatures for non finite values (nan) | e41838b1350e256e32ab2e6014c594bec873c973 | Aleksei Gerasimov | 2021-11-30 12:24:29 |
ghull: fix orth estimator for non-Gaussian distributions | ceae4981fa46cc770cdedb84bc59f4802a657364 | Aleksei Gerasimov | 2021-11-30 09:25:02 |
mplot.misc: enable latex | 633721276f8f61aa7f82b37443f5a304a85c2f84 | Aleksei Gerasimov | 2021-11-29 13:45:58 |
ghull: limit memory consuption to 1/10 of RAM | f5c173be56dff7811f799551d2261aac0f719c72 | I am | 2021-11-28 08:53:55 |
File | Lines added | Lines deleted |
---|---|---|
qt_gui/qt_dicebox.py | 1 | 1 |
qt_gui/qt_plot.py | 1 | 1 |
File qt_gui/qt_dicebox.py changed (mode: 100644) (index 0fa1826..3ab88f9) | |||
... | ... | class GoalWidget(pg.parametertree.ParameterTree): | |
22 | 22 | 'values': tschemes, 'value': tschemes[0]}) | 'values': tschemes, 'value': tschemes[0]}) |
23 | 23 | params.append({'name': 'degree', 'type': 'int', \ | params.append({'name': 'degree', 'type': 'int', \ |
24 | 24 | 'title': "degree",\ | 'title': "degree",\ |
25 | 'limits': (1, float('inf')), 'value': 5, 'default': 5,\ | ||
25 | 'limits': (0, float('inf')), 'value': 5, 'default': 5,\ | ||
26 | 26 | 'tip': "Used only with Grundmann-Möller and Silvester cubaturas"}) | 'tip': "Used only with Grundmann-Möller and Silvester cubaturas"}) |
27 | 27 | ||
28 | 28 | params.append({'name': 'tri_space', 'type': 'list', 'value': 'G', \ | params.append({'name': 'tri_space', 'type': 'list', 'value': 'G', \ |
File qt_gui/qt_plot.py changed (mode: 100644) (index accc7bc..2bc6f78) | |||
... | ... | class FastSimplexEstimationWidget(QtGui.QSplitter): | |
918 | 918 | 'values': tschemes, 'value': tschemes[0]}) | 'values': tschemes, 'value': tschemes[0]}) |
919 | 919 | params.append({'name': 'degree', 'type': 'int', \ | params.append({'name': 'degree', 'type': 'int', \ |
920 | 920 | 'title': "degree",\ | 'title': "degree",\ |
921 | 'limits': (1, float('inf')), 'value': 5, 'default': 5,\ | ||
921 | 'limits': (0, float('inf')), 'value': 5, 'default': 5,\ | ||
922 | 922 | 'tip': "Used only with Grundmann-Möller and Silvester cubaturas"}) | 'tip': "Used only with Grundmann-Möller and Silvester cubaturas"}) |
923 | 923 | params.append({'name': 'node (pixel) size', 'type': 'float',\ | params.append({'name': 'node (pixel) size', 'type': 'float',\ |
924 | 924 | 'limits': (0, float('inf')), 'value': 3.5, 'default': self.sb_item.px_size}) | 'limits': (0, float('inf')), 'value': 3.5, 'default': self.sb_item.px_size}) |