From e56002b21fb9e8779a08bcd28613cd115ce07ed7 Mon Sep 17 00:00:00 2001 From: goulart-paul Date: Tue, 27 Feb 2024 07:41:26 +0000 Subject: [PATCH] sync tests with v0.7.0 --- tests/basic_lp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/basic_lp.cpp b/tests/basic_lp.cpp index ef60e3c..1bbb615 100644 --- a/tests/basic_lp.cpp +++ b/tests/basic_lp.cpp @@ -75,7 +75,7 @@ TEST_F(BasicLPTest, InfeasibleIllCond) { double *A_nzval = A.valuePtr(); A_nzval[0] = numeric_limits::epsilon(); - A_nzval[1] = -numeric_limits::epsilon(); + A_nzval[1] = 0.0; c[0] = 1.0; c[1] = 0.0;