1#ifndef ANTARES_XPANSION_SRC_CPP_STUDY_UPDATER_STUDYUPDATERUNNER_H
2#define ANTARES_XPANSION_SRC_CPP_STUDY_UPDATER_STUDYUPDATERUNNER_H
8#include <boost/program_options.hpp>
10#include "antares-xpansion/helpers/OptionsParser.h"
11#include "antares-xpansion/lpnamer/input_reader/CandidatesINIReader.h"
12#include "antares-xpansion/lpnamer/input_reader/LinkProfileReader.h"
13#include "antares-xpansion/lpnamer/model/ActiveLinks.h"
14#include "antares-xpansion/lpnamer/problem_modifier/LauncherHelpers.h"
15#include "antares-xpansion/study-updater/StudyUpdater.h"
20 std::filesystem::path xpansion_output_dir_;
21 std::filesystem::path solution_file_;
27 std::filesystem::path SolutionFile()
const
29 return solution_file_;
32 std::filesystem::path XpansionOutputDir()
const
34 return xpansion_output_dir_;
38void updateStudy(
const std::filesystem::path& rootPath_p,
39 const std::vector<ActiveLink>& links_p,
40 const std::filesystem::path& jsonPath_l,
41 std::shared_ptr<ProblemGenerationLog::ProblemGenerationLogger> logger);
Definition OptionsParser.h:12
Definition StudyUpdateRunner.h:18