From a5f3d432a82d4c0d178722d425650e8d82e4f1d5 Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Mon, 20 Jan 2025 09:03:32 +0400 Subject: [PATCH] Update alter1.py --- experiments/alter1.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/experiments/alter1.py b/experiments/alter1.py index 1a98e2f..e6b2a98 100644 --- a/experiments/alter1.py +++ b/experiments/alter1.py @@ -11,11 +11,6 @@ def min_circle_cvx(points, **kwargs): x = cp.Variable(points.shape[1], name="Midpoint") objective = cp.Minimize(r) constraints = [cp.SOC(r, point - x) for point in points] - # * #np.ones(points.shape[0]), - # points - cp.outer(np.ones(points.shape[0]), x), - # axis=1, - # ) - # ] problem = cp.Problem(objective=objective, constraints=constraints) problem.solve(**kwargs)