Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMarechal25 committed Jan 21, 2025
1 parent 5917988 commit fbb3278
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/cpp/multisolver_interface/SolverFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,6 @@ std::vector<std::string> SolverLoader::GetAvailableSolvers(
std::call_once(solver_flag, GetAvailableSolversInternal, logger);
return available_solvers;
}
std::vector<std::string> SolverLoader::GetSupportedSolvers() {
static std::vector<std::string> supported_solvers;
if (supported_solvers.empty()) {
supported_solvers.emplace_back(XPRESS_STR);
#ifdef COIN_OR
supported_solvers.emplace_back(CLP_STR);
supported_solvers.emplace_back(CBC_STR);
#endif
}
return supported_solvers;
}

/**
* @brief Returns a list of supported solvers
Expand Down

0 comments on commit fbb3278

Please sign in to comment.