Skip to content

Commit

Permalink
Fix CPLEX solver version output
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaslundell committed Apr 6, 2020
1 parent f4c9e81 commit 6e1409b
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/Report.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -442,14 +442,7 @@ void Report::outputOptionsReport()
#ifdef HAS_CPLEX
if(solver == ES_MIPSolver::Cplex)
{
if(env->settings->getSetting<bool>("Cplex.UseGenericCallback", "Subsolver"))
{
dualSolver = "CPLEX with new callback functionality";
}
else
{
dualSolver = "CPLEX with old callback functionality";
}
dualSolver = "CPLEX";
}
#endif

Expand Down

0 comments on commit 6e1409b

Please sign in to comment.