Skip to content

Commit 947b85e

Browse files
committedMar 24, 2025·
more relaxed floating point test
1 parent 10c83b9 commit 947b85e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ortools/sat/util_test.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ TEST(BasicKnapsackSolverTest, RandomComparisonWithSolver) {
867867
<< domains[i] << " " << result.solution[i] << " " << coeffs[i];
868868
objective += costs[i] * result.solution[i];
869869
}
870-
EXPECT_DOUBLE_EQ(objective, response.objective_value());
870+
EXPECT_NEAR(objective, response.objective_value(), 1e-8);
871871
}
872872
}
873873
}

0 commit comments

Comments
 (0)
Please sign in to comment.