Skip to content

Commit

Permalink
remove use of GAMSMAJOR and GAMSMINOR in solver description
Browse files Browse the repository at this point in the history
- these are deprecated with GAMS 44 and will be removed soon after
  • Loading branch information
svigerske committed Jul 17, 2023
1 parent 9e947a3 commit d8d503f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NLPSolver/NLPSolverGAMS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ void NLPSolverGAMS::updateVariableUpperBound(int variableIndex, double bound)

std::string NLPSolverGAMS::getSolverDescription()
{
std::string description = fmt::format("{} in GAMS {}.{}", selectedNLPSolver, GAMSMAJOR, GAMSMINOR);
std::string description = fmt::format("{} in GAMS", selectedNLPSolver);

return (description);
};
Expand Down

0 comments on commit d8d503f

Please sign in to comment.