We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc04acd commit ed4d8e4Copy full SHA for ed4d8e4
test/test_pipeline.py
@@ -803,12 +803,12 @@ def PR_box(v):
803
BellSDP.generate_relaxation("npa2")
804
BellSDP.set_distribution(PR_box(1/np.sqrt(2)+1e-4))
805
BellSDP.solve()
806
- self.assertEqual(BellSDP.status, "infeasible",
+ self.assertEqual(BellSDP.status, "dual_infeas_cer",
807
"The symmetrized SDP is not identifying incompatible" +
808
" distributions.")
809
BellSDP.set_distribution(PR_box(1/np.sqrt(2)-1e-4))
810
811
- self.assertEqual(BellSDP.status, "feasible",
+ self.assertEqual(BellSDP.status, "optimal",
812
"The symmetrized SDP is not identifying compatible" +
813
814
0 commit comments