diff --git a/src/ui/simulator/application/study.cpp b/src/ui/simulator/application/study.cpp index c19ea5a1f8..ab4e65e472 100644 --- a/src/ui/simulator/application/study.cpp +++ b/src/ui/simulator/application/study.cpp @@ -1207,7 +1207,10 @@ void RunSimulationOnTheStudy(Data::Study::Ptr study, cmd << " --parallel"; // add solver name for ortools - cmd << " --solver=" << solverName; + if (!solverName.empty()) + { + cmd << " --solver=" << solverName; + } // Go go go ! logs.debug() << "running " << cmd;