1#ifndef ANTARES_XPANSION_SRC_CPP_STUDY_UPDATER_STUDYUPDATERUNNER_H
2#define ANTARES_XPANSION_SRC_CPP_STUDY_UPDATER_STUDYUPDATERUNNER_H
3#include <boost/program_options.hpp>
9#include "antares-xpansion/lpnamer/model/ActiveLinks.h"
10#include "antares-xpansion/lpnamer/input_reader/CandidatesINIReader.h"
11#include "antares-xpansion/lpnamer/problem_modifier/LauncherHelpers.h"
12#include "antares-xpansion/lpnamer/input_reader/LinkProfileReader.h"
13#include "antares-xpansion/helpers/OptionsParser.h"
14#include "antares-xpansion/study-updater/StudyUpdater.h"
17 std::filesystem::path xpansion_output_dir_;
18 std::filesystem::path solution_file_;
23 std::filesystem::path SolutionFile()
const {
return solution_file_; }
24 std::filesystem::path XpansionOutputDir()
const {
return xpansion_output_dir_; }
27 const std::filesystem::path &rootPath_p,
28 const std::vector<ActiveLink> &links_p,
29 const std::filesystem::path &jsonPath_l,
30 std::shared_ptr<ProblemGenerationLog::ProblemGenerationLogger> logger);
Definition OptionsParser.h:10
Definition StudyUpdateRunner.h:15