Skip to content

Commit 301a9ac

Browse files
authored
Revert presolve tolerance (#1757)
Authors: - Akif ÇÖRDÜK (https://github.com/akifcorduk) Approvers: - Hugo Linsenmaier (https://github.com/hlinsen) URL: #1757
1 parent 917f577 commit 301a9ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpp/src/mip_heuristics/presolve/third_party_presolve.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ void set_presolve_options(papilo::Presolve<f_t>& presolver,
724724
{
725725
presolver.getPresolveOptions().tlim = time_limit;
726726
presolver.getPresolveOptions().threads = num_cpu_threads; // user setting or 0 (automatic)
727-
presolver.getPresolveOptions().feastol = absolute_tolerance;
727+
presolver.getPresolveOptions().feastol = 1e-5;
728728
if (max_rounds > 0) { presolver.getPresolveOptions().maxrounds = max_rounds; }
729729
if (dual_postsolve) {
730730
presolver.getPresolveOptions().componentsmaxint = -1;

0 commit comments

Comments
 (0)