Skip to content

Commit

Permalink
Merge pull request #169 from coin-or/skip-gams-version
Browse files Browse the repository at this point in the history
remove use of GAMSMAJOR and GAMSMINOR in solver description
  • Loading branch information
andreaslundell committed Jul 19, 2023
2 parents 9e947a3 + d8d503f commit e3af079
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 e3af079

Please sign in to comment.