Subject | Hash | Author | Date (UTC) |
---|---|---|---|
convex_hull: add meaningless method | 96a86b7eabceb15e6c937932c2002409c2df0178 | I am | 2021-06-14 16:35:39 |
dicebox: new brand box named Goal is ready | 725c2561b62769af6034c690005d1d22e6af41c7 | I am | 2021-06-05 13:40:15 |
convex_hull: last node fix in fire() function | ca938c11398dfb2e16441b989902dab1558336b3 | I am | 2021-06-05 13:25:55 |
convex_hull: small fix for QHull under single simplex integration | b0b236cd14ae614ecd1310b8c7cfcafe8d1b0851 | I am | 2021-05-30 05:57:45 |
convex_hull: ensure Ghull to always have some nodes for expansion | 7110d521d9fece58639a359c83773df904b1177f | I am | 2021-05-29 07:03:49 |
dicebox: throw away plot dependency, simplify increment function | 1cf0c481b8df1937ff7eda6e0373d5d6a72387db | I am | 2021-05-28 16:42:19 |
simplex: add JustCubatureTriangulation class separated from Shull | ea291f9deee9f3b5b8615ae1f14a49aecd327461 | I am | 2021-05-28 16:39:58 |
mart: add convex_hull routines | 90105552e7aecf3df8e84a1f5c4bdc1b04be249b | I am | 2021-04-25 20:11:34 |
convex_hull.Ghull: try to outthink OS's memory management | 116444dc08cc0261e149de02f21f14f74dc8816b | I am | 2021-04-25 08:02:25 |
convex_hull.Ghull: in case of memory error divide ns by 3 | 0f629139f7926107b0b4eeb55452e745a2c23487 | I am | 2021-04-25 06:50:02 |
convex_hull: memory failsafe integration | 7624e4b81526d3944f1a5ac74d298dee792c3085 | I am | 2021-04-24 08:06:27 |
simplex: delete ghull-related stuff (moved to convex_hull module already) | f514adf959a9a2a9b7806b3cde81f78faf04539d | I am | 2021-04-19 17:04:54 |
convex_hull.QHull: change enough_points into property | ae4f9b4d70bb43556874bc6d698cb1cc09ad9430 | I am | 2021-04-19 17:02:35 |
qt_plot: add support for "just nodes" | da0e307ab0a21e565031789260a9160c5ff1b011 | I am | 2021-04-19 07:33:12 |
sball.Shell.rvs(): inverse linspace (wouldn't produce NaNs) | 58452888a47230ab30c56bc33f5e3c780e60c752 | I am | 2021-04-18 03:26:21 |
convex_hull: move QHull from simplex module | e5c67ce54fa4c9f3ce15714ebeff7d363d918494 | I am | 2021-04-17 19:04:00 |
schemes: comment out dups | 8d22480a42926c3a78e62a07be4418e1f8ba350f | I am | 2021-04-16 23:35:53 |
convex_hull: split DirectHull into simplified DirectHull itself and CompleteHull | b109bbdc325a2a88bf22e9893fa162690bf190f9 | I am | 2021-04-16 23:26:03 |
rework convex hull | 60185dce0403ba941e849a60b5e43da6ce1fffd4 | I am | 2021-04-12 17:09:25 |
sball: add .get_random_directions() function | d41131f28937e40eb853a30047de3cfc43cf5fa8 | I am | 2021-03-24 03:24:41 |
File | Lines added | Lines deleted |
---|---|---|
convex_hull.py | 6 | 0 |
File convex_hull.py changed (mode: 100644) (index 0021711..d6d0b3e) | |||
... | ... | class QHull: | |
516 | 516 | sample_model = -hull.A * hull.b.reshape(-1,1) | sample_model = -hull.A * hull.b.reshape(-1,1) |
517 | 517 | return hull.sample.f_model.new_sample(sample_model, space=hull.space) | return hull.sample.f_model.new_sample(sample_model, space=hull.space) |
518 | 518 | ||
519 | def get_design_point(hull): | ||
520 | hull._update() | ||
521 | to_fire = np.nanargmax(hull.b) #č tak, pro jistotu | ||
522 | sample_model = -hull.A[to_fire] * hull.b[to_fire] | ||
523 | return hull.sample.f_model.new_sample(sample_model, space=hull.space) | ||
524 | |||
519 | 525 | ||
520 | 526 | # shortcut for Ghull | # shortcut for Ghull |
521 | 527 | # valid only if space==G | # valid only if space==G |