23 #include <antares/modeler-optimisation-container/scenarioGroupRepo.h>
24 #include <antares/optimisation/linear-problem-data-impl/linearProblemData.h>
25 #include <antares/study/system-model/library.h>
26 #include <antares/study/system-model/system.h>
28 namespace Antares::Modeler
31 enum class ResolutionMode : unsigned
33 BENDERS_DECOMPOSITION = 0,
34 SEQUENTIAL_SUBPROBLEMS = 1
39 std::vector<ModelerStudy::SystemModel::Library> libraries;
40 std::unique_ptr<ModelerStudy::SystemModel::System> system;
41 std::unique_ptr<Optimisation::LinearProblemApi::ILinearProblemData> dataSeries;
43 ResolutionMode resolutionMode = ResolutionMode::SEQUENTIAL_SUBPROBLEMS;
Definition: scenarioGroupRepo.h:12