Skip to content

Commit

Permalink
removed OptimalityTol 1e-9
Browse files Browse the repository at this point in the history
  • Loading branch information
hhijazi committed Sep 27, 2023
1 parent 037ee90 commit 0e690a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GurobiProgram.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ bool GurobiProgram::solve(bool relax, double mipgap, double time_limit){

grb_mod->set(GRB_DoubleParam_MIPGap, 1e-6);
grb_mod->set(GRB_DoubleParam_FeasibilityTol, 1e-9);
grb_mod->set(GRB_DoubleParam_OptimalityTol, 1e-9);
// grb_mod->set(GRB_DoubleParam_OptimalityTol, 1e-9);
// grb_mod->set(GRB_IntParam_StartNodeLimit, -3);
// grb_mod->getEnv().set(GRB_IntParam_DualReductions, 0);
// grb_mod->getEnv().set(GRB_IntParam_PreCrush, 1);
Expand Down

0 comments on commit 0e690a4

Please sign in to comment.