Antares Xpansion
Investment simulations for Antares studies
Loading...
Searching...
No Matches
SettingsReader.h
1#pragma once
2
3#include <filesystem>
4
5#include "antares-xpansion/lpnamer/helper/ProblemGenerationLogger.h"
6
11{
12public:
17 explicit SettingsReader(const std::filesystem::path& file_path,
19
20 std::string Solver();
21
22private:
24 std::string solver_name_;
25
26 std::map<std::string, std::string> settings_;
27 void check_file_exist(const std::filesystem::path& file_path) const;
28 void parse_file(const std::filesystem::path& file_path);
29};
Definition ProblemGenerationLogger.h:91
Definition SettingsReader.h:11
SettingsReader(const std::filesystem::path &file_path, ProblemGenerationLog::ProblemGenerationLogger *logger)
Definition SettingsReader.cpp:7