Skip to content

Commit 1b856ea

Browse files
committed
Now, finally, fix the tests
1 parent 22e499c commit 1b856ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_pipeline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ def PR_box(v):
789789
bellScenario_c.add_symmetries(symmetries)
790790

791791
BellLP = InflationLP(bellScenario_c)
792-
BellLP.set_distribution(PR_box(1/2+1e-3))
792+
BellLP.set_distribution(PR_box(1/2+1e-4))
793793
BellLP.solve()
794794
self.assertEqual(BellLP.success, False,
795795
"The symmetrized LP is not identifying incompatible" +
@@ -802,7 +802,7 @@ def PR_box(v):
802802

803803
BellSDP = InflationSDP(bellScenario)
804804
BellSDP.generate_relaxation("npa2")
805-
BellSDP.set_distribution(PR_box(1/np.sqrt(2)+1e-4))
805+
BellSDP.set_distribution(PR_box(1/np.sqrt(2)+1e-3))
806806
BellSDP.solve()
807807
self.assertEqual(BellSDP.status, "dual_infeas_cer",
808808
"The symmetrized SDP is not identifying incompatible" +

0 commit comments

Comments
 (0)