Subject | Hash | Author | Date (UTC) |
---|---|---|---|
convex_hull.QHull: manual update() fix | 5ccff702b9920c7525c88d306f2300cd43b2e76b | I am | 2022-12-07 04:02:39 |
simplex: implement BetterCubatureIntegration | 88b14adc4423f0587bd51bed06e74ce6d0d60bd1 | I am | 2022-12-05 22:20:31 |
convex_hull.BrickHull: add get_hyperplane_distances() method a use it as fallback for the Qhull | 48d35c953a5cbbf739e5e838709bc00fe2f047d4 | I am | 2022-12-05 03:30:12 |
convex_hull.Qhull: add get_hyperplane_distances() method, add auto_update parameter | 28aada4b79b52f58c4ad43d270be997ec6359166 | I am | 2022-12-04 22:49:41 |
move diceboxes to the dedicated drawer | 31c7d30ed43f04b9469df843f909814c062adf5e | I am | 2022-12-04 21:27:37 |
reader: finally, add new Store class for the estimations | 673b7daa8213807d0217089b3317674595156f6d | I am | 2022-12-03 17:46:22 |
f_models.SNorm: hotfix | 5f364d1770e18d18fb810760b6207c905b551762 | I am | 2022-12-02 21:33:48 |
f_models: rewrite SNorm in lazy way. Old SNorm class renamed to SNormClassic | 3b6805b2a1d0bce88960bc016bbe74bb5274810b | I am | 2022-12-02 21:11:37 |
simplex: implement CircumCenter class | 0a1a67122854cfb331f696163f22cfc67331f3e8 | I am | 2022-12-01 01:40:38 |
voronoi.ContactVoronoi: add explore_couple() method | 72f4dffa5e8e7ee3165df4648f6a35d75d6678a3 | I am | 2022-11-29 11:59:07 |
voronoi: almost finished | 00b697466c226212aeb1ea76a717cf3db48c3187 | I am | 2022-11-28 16:28:48 |
voronoi: WIP | 29c59822f96df4efd6d1c6555a6fa083a869a2c8 | I am | 2022-11-28 11:14:50 |
voronoi: WIP, clean up | 8e776235f7603a9bc7f3d8254976224a81bb153e | I am | 2022-11-27 19:56:34 |
voronoi: WIP | 41e506eacb502853a1cf70023e7b276539579af7 | I am | 2022-11-27 13:03:08 |
convex_hull: optimize orth basis generation | 4ebfde2955aa792fb31075bf9ac8af718ae07b29 | I am | 2022-11-26 15:35:21 |
voronoi: WIP | 8f7f3bca7c4333ab579e057438c8c64208d1f60e | I am | 2022-11-26 11:22:55 |
voronoi: remove the code already moved to wireframe module | fe57b4b699e8689d35afb510f704019152566f09 | I am | 2022-11-25 09:25:55 |
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 |
File | Lines added | Lines deleted |
---|---|---|
wellmet/convex_hull.py | 1 | 1 |
File wellmet/convex_hull.py changed (mode: 100644) (index 2c1bbfe..541f173) | |||
... | ... | class QHull: | |
832 | 832 | hull.update() | hull.update() |
833 | 833 | ||
834 | 834 | def update(self): | def update(self): |
835 | if self.convex_hull.npoints < self.sample.nsim: | ||
835 | if self.enough_points and (self.convex_hull.npoints < self.sample.nsim): | ||
836 | 836 | if self.incremental: | if self.incremental: |
837 | 837 | points = getattr(self.sample, self.space) | points = getattr(self.sample, self.space) |
838 | 838 | self.convex_hull.add_points(points[self.convex_hull.npoints:]) | self.convex_hull.add_points(points[self.convex_hull.npoints:]) |