Skip to content

Commit

Permalink
sync tests with v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goulart-paul committed Feb 27, 2024
1 parent 5781948 commit e56002b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/basic_lp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ TEST_F(BasicLPTest, InfeasibleIllCond)
{
double *A_nzval = A.valuePtr();
A_nzval[0] = numeric_limits<double>::epsilon();
A_nzval[1] = -numeric_limits<double>::epsilon();
A_nzval[1] = 0.0;

c[0] = 1.0;
c[1] = 0.0;
Expand Down

0 comments on commit e56002b

Please sign in to comment.