Skip to content

Commit

Permalink
Default solver in GUI (#2524)
Browse files Browse the repository at this point in the history
Add sirius as the default solver in the run window
  • Loading branch information
payetvin authored Dec 5, 2024
1 parent e80945a commit 0abda66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/simulator/windows/simulation/run.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ Run::Run(wxWindow* parent, bool preproOnly) :
pTitleOrtoolsSolverCombox
= Antares::Component::CreateLabel(pBigDaddy, wxT("Ortools solver : "));

pOrtoolsSolverCombox = new wxComboBox(pBigDaddy, wxID_ANY);
pOrtoolsSolverCombox = new wxComboBox(pBigDaddy, wxID_ANY, "sirius");
std::list<std::string> solverList = getAvailableOrtoolsSolverName();
for (const std::string& solverName : solverList)
{
Expand Down

0 comments on commit 0abda66

Please sign in to comment.