Skip to content

Commit

Permalink
Don't generate MIP cuts for interdiction problems
Browse files Browse the repository at this point in the history
  • Loading branch information
tkralphs committed Dec 9, 2024
1 parent d80b292 commit 4cf7a75
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/MibSModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3830,6 +3830,11 @@ MibSModel::adjustParameters()
}
}

if (isInterdict_){
MibSPar()->setEntry(MibSParams::blisCutStrategy, 0);
BlisPar()->setEntry(BlisParams::cutStrategy, 0);
}

if (MibSPar_->entry(MibSParams::cutStrategy) == BRANCHONLY){
turnOffDefaultCuts = true;
}
Expand Down

0 comments on commit 4cf7a75

Please sign in to comment.