Subject | Hash | Author | Date (UTC) |
---|---|---|---|
simplex._Sense: bugfix | 3ae53e8b178107b8beb6ad960ec683c8d38a3b3c | I am | 2023-03-07 23:23:36 |
simplex._Sense: totally rework, finalized vectors are introduced | 829ba58a93481541a58cd4a9f6dae0ba9fb611c6 | I am | 2023-03-07 13:33:38 |
simplex: preliminary commit of an _Sense's auxiliary class - brand new SeparationAxis | c0bbb714400df48abf7a398e018c5626803bf024 | I am | 2023-03-04 10:17:12 |
simplex._Sense: one more optimization | a51f4ba65ad4a55ecc74fd82a6e011a4eeed8a5d | I am | 2023-02-26 15:21:23 |
qt_gui.qt_plot: implement sensitivity-related Arrows class | b5365ae3ca3ab0ed8018e60d4e8711c5c30e4d96 | I am | 2023-02-26 14:31:10 |
simplex._Sense: rename "sensibility" to sensitivity | a9d56d5386730263eb27e6e31f07b99bab0620fb | I am | 2023-02-26 14:29:54 |
g_models: add quadratic | 013b4ddc108b94061eaebc1a10d18427f10a34d4 | I am | 2023-02-24 08:04:12 |
simplex._Sense: one more performance trick | 59b423cca53b9975da67d876110927f233506de8 | I am | 2023-02-24 08:03:23 |
simplex: implement separability-based sensibility analysis (new brand _Sense class) | 9c5d58f2301893ceaec1b0e90bff76035cfa15b2 | I am | 2023-02-23 18:49:11 |
dicebox.circumtri.CirQTri: switch to GaussCubatureIntegration | 5b52dd25cb7a997af4953230116deb9efc577d56 | I am | 2023-02-11 04:32:48 |
simplex: implement GaussCubatureIntegration in the most memory-friendly way | 689d253ae7e2a22242258fd5bef0a069caf7cf75 | I am | 2023-02-11 04:31:11 |
convex_hull.QHullCubature: implement memory-friendly outside (chi) integration | ad8210a04b1e0903de7435cad16b1304707d0e6e | I am | 2023-02-09 22:22:05 |
qt_gui.qt_plot: require box recommendation to show next point | 6f726047f7f08e884359020eaa1eac6f6cc125d2 | I am | 2023-02-09 11:51:44 |
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 |
File | Lines added | Lines deleted |
---|---|---|
wellmet/simplex.py | 3 | 5 |
File wellmet/simplex.py changed (mode: 100644) (index b31892c..6bf4287) | |||
... | ... | class _Sense: | |
786 | 786 | #č prostě paušalně navysíme o jednu | #č prostě paušalně navysíme o jednu |
787 | 787 | #č byly tam -1 | #č byly tam -1 |
788 | 788 | local_scope[key] += 1 | local_scope[key] += 1 |
789 | return self._continue_search(id) | ||
789 | return self._continue_search(id, to_parse, parsed) | ||
790 | 790 | else: | else: |
791 | 791 | return solver.finalized_nornal | return solver.finalized_nornal |
792 | 792 | ||
... | ... | class _Sense: | |
819 | 819 | ||
820 | 820 | ||
821 | 821 | # should be only called by process_simplex()! | # should be only called by process_simplex()! |
822 | def _continue_search(self, non_separable_simplex_id): | ||
822 | def _continue_search(self, non_separable_simplex_id, to_parse, parsed): | ||
823 | 823 | # self for this class, sensitivity-related things | # self for this class, sensitivity-related things |
824 | 824 | # sx for general Triangulation class related attributes | # sx for general Triangulation class related attributes |
825 | 825 | sx = self | sx = self |
... | ... | class _Sense: | |
839 | 839 | #č a my víme, že v techto množinách zůstalo | #č a my víme, že v techto množinách zůstalo |
840 | 840 | #č to, co máme projít. A pozastavilo se to na parsed | #č to, co máme projít. A pozastavilo se to na parsed |
841 | 841 | local_scope = self._local_scope | local_scope = self._local_scope |
842 | to_parse = self._to_parse | ||
843 | parsed = self._parsed | ||
844 | 842 | ||
845 | 843 | for key in parsed: | for key in parsed: |
846 | 844 | if key in local_scope: | if key in local_scope: |
... | ... | class SeparationAxis: | |
1096 | 1094 | #č takovej vzorek, který není ve skoupu | #č takovej vzorek, který není ve skoupu |
1097 | 1095 | #č u sousedicího simplexu může být maximálně jeden | #č u sousedicího simplexu může být maximálně jeden |
1098 | 1096 | return True | return True |
1099 | |||
1097 | return True | ||
1100 | 1098 | ||
1101 | 1099 | ||
1102 | 1100 |