Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v9-minor'
Browse files Browse the repository at this point in the history
  • Loading branch information
scip-ci committed Nov 6, 2024
2 parents 8b39e70 + 2fd908d commit e913cfd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ Fixed bugs
Fixed bugs
----------

- apply same feasibility definition in PaPILO as SCIP to avoid numerical inconsistencies

Unit tests
----------

Expand Down
3 changes: 3 additions & 0 deletions src/scip/presol_milp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,9 @@ Presolve<SCIP_Real> setupPresolve(
/* set tolerances */
presolve.getPresolveOptions().feastol = SCIPfeastol(scip);
presolve.getPresolveOptions().epsilon = SCIPepsilon(scip);
#if PAPILO_APIVERSION >= 3
presolve.getPresolveOptions().useabsfeas = false;
#endif

#ifndef SCIP_PRESOLLIB_ENABLE_OUTPUT
/* adjust output settings of presolve library */
Expand Down

0 comments on commit e913cfd

Please sign in to comment.