Skip to content

Commit

Permalink
test_solve_feasible: decease tolerance for scipy 1.12 (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
a-n-n-a-l-e-e authored Feb 1, 2024
1 parent dd17e2e commit 14f666d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_solve_random_cone_prob.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_solve_feasible(use_indirect, gpu):
)
np.testing.assert_almost_equal(s.T @ y, 0.0)
np.testing.assert_almost_equal(s, tools.proj_cone(s, K), decimal=4)
np.testing.assert_almost_equal(y, tools.proj_dual_cone(y, K), decimal=4)
np.testing.assert_almost_equal(y, tools.proj_dual_cone(y, K), decimal=3)


@pytest.mark.parametrize("use_indirect,gpu", flags)
Expand Down

0 comments on commit 14f666d

Please sign in to comment.