From 0e690a4058f75d049ecde46c400f9a6d6d1ededf Mon Sep 17 00:00:00 2001 From: Hassan Date: Wed, 27 Sep 2023 11:11:30 -0600 Subject: [PATCH] removed OptimalityTol 1e-9 --- src/GurobiProgram.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GurobiProgram.cpp b/src/GurobiProgram.cpp index 6c18cc47..2c9125ab 100755 --- a/src/GurobiProgram.cpp +++ b/src/GurobiProgram.cpp @@ -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);