Subject | Hash | Author | Date (UTC) |
---|---|---|---|
qt_gui.qt_pairwise.ContactWidget: show Qhull request at most once. | db6af332a70786759692175384f4b7e779b4caca | I am | 2022-11-16 13:26:04 |
wireframe.LinearSolver: polytope handle hotfix | bc48de3193ce9be482cc4dd068a26f48ea1e0203 | I am | 2022-11-16 13:24:41 |
qt_gui.qt_pairwise.ContactWidget: add LP methods | 8dbd480ca80aabe1c7e0e689780767b78c86c1d1 | I am | 2022-11-16 11:33:32 |
wireframe: implement two LP solvers | 8aecd55104ce85ccccf872ebef0052a5937415b5 | I am | 2022-11-16 11:32:31 |
qt_gui.qt_pairwise.ContactWidget: add Gabriel adjacency | 86eaf302b176612fad072a2248e2c724d32be755 | I am | 2022-11-16 06:17:53 |
wireframe: implement Gabriel adjacency | f0a74b4f28cec6c2ddc68d6811e0a812fc829d63 | I am | 2022-11-16 06:16:58 |
qt_gui.qt_pairwise.ContactWidget: reflect updated wireframe | b00a9be23d92d999e0020426a7a5caa1206c5862 | I am | 2022-11-16 03:56:57 |
wireframe: implement LocalizedHull class | 95c19144c5144461db241df1b2bd20d8950c8d57 | I am | 2022-11-16 03:55:59 |
qt_gui.qt_pairwise.ContactWidget: polish UI | bd48c8a6342e20dac1d635b963dd44e62c371379 | I am | 2022-11-13 20:03:39 |
wireframe: add convex_slice() method | efada4c62f88b6106c687217472e0b8c52374fed | I am | 2022-11-13 19:51:49 |
qt_gui.qt_pairwise.ContactWidget: finish widget and clean up | 10753a104879d6b9c109735e959b18b5a60a4616 | I am | 2022-11-10 05:02:01 |
wireframe: finish and clean up module. implement DirectContact. | f7ff9c02f25a3ed8fe04e99036da69766afa5a49 | I am | 2022-11-10 04:58:58 |
qt_gui.qt_pairwise.ContactWidget: implement Qhull check | e362df1f8b87ab7c6a27643cd6f4091b9caec9a3 | I am | 2022-11-09 21:35:10 |
wireframe: add Qframe class | cf52d85dd1663537cd8c52a98514c7d041913979 | I am | 2022-11-09 21:34:12 |
qt_gui.qt_pairwise: add auto arnge and auto levels controls | 9bc2cf10a9a1695c2c1a5f6a9959f375d3808a71 | I am | 2022-11-09 18:16:47 |
qt_gui.qt_pairwise: set blue -1 by default. Add force_update option in Contact widget | 7371575784df7fd41bd76ad29caf38f474a06a26 | I am | 2022-11-09 15:39:03 |
qt_gui.qt_pairwise: prepare Contact widget | bfa78d7493f5eb04b6bd3a4ad26dd1a92d17a895 | I am | 2022-11-09 03:36:05 |
qt_gui.qt_pairwise: prepare more mouse event signals | c60e613508480c68483b3d0d6ad6c876b27f539c | I am | 2022-11-08 01:55:14 |
qt_gui: introduce reworked matrix view window | e28b95c5f418a7a3cea0cb84ca82b40275a71061 | I am | 2022-11-07 02:20:45 |
introduce wireframe module for the contacts finding functionality | b6068dd92663699859ea7cbf3aac00178d120e0f | I am | 2022-10-25 14:24:37 |
File | Lines added | Lines deleted |
---|---|---|
wellmet/qt_gui/qt_pairwise.py | 3 | 1 |
File wellmet/qt_gui/qt_pairwise.py changed (mode: 100644) (index c89ed1e..90c33fa) | |||
... | ... | class ContactWidget(pg.LayoutWidget): | |
631 | 631 | self.setup() | self.setup() |
632 | 632 | self.kwargs = {} | self.kwargs = {} |
633 | 633 | self.check_contact = self.peacefully_check_contact | self.check_contact = self.peacefully_check_contact |
634 | self.got_user_consent = False | ||
634 | 635 | self.setup_CS() | self.setup_CS() |
635 | 636 | ||
636 | 637 | def on_nsim_changed(self, n): | def on_nsim_changed(self, n): |
... | ... | class ContactWidget(pg.LayoutWidget): | |
832 | 833 | return True, self.qframe | return True, self.qframe |
833 | 834 | except AttributeError: | except AttributeError: |
834 | 835 | sample_box = self.w.get_sample_box() | sample_box = self.w.get_sample_box() |
835 | if (sample_box.nvar < 10) or self.get_user_consent(): | ||
836 | if (sample_box.nvar < 10) or self.got_user_consent or self.get_user_consent(): | ||
837 | self.got_user_consent = True | ||
836 | 838 | sample_space = getattr(sample_box, self.w.space) | sample_space = getattr(sample_box, self.w.space) |
837 | 839 | self.qframe = wireframe.Qframe(sample_space) | self.qframe = wireframe.Qframe(sample_space) |
838 | 840 | return True, self.qframe | return True, self.qframe |