Skip to content

Commit

Permalink
remove explicit call to MOSEK
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyjmurray committed Sep 28, 2024
1 parent a83c2e3 commit 4b4635c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/tools/test_optools.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ def test_diamond_norm_epigraph(self):
obj_expr, constraints = sdps.diamond_norm_canon(delta1, 'std')
objective = cp.Minimize(obj_expr)
problem = cp.Problem(objective, constraints)
val1 = problem.solve(verbose=True, solver='MOSEK')
val1 = problem.solve(verbose=True, solver='CLARABEL')
self.assertGreaterEqual(val0, 0.7)
self.assertAlmostEqual(val0, val1, places=4)
return
Expand Down

0 comments on commit 4b4635c

Please sign in to comment.