A C++ Framework for Optimization
Loading...
Searching...
No Matches
read_from_file.h
1//
2// Created by Henri on 20/01/2026.
3//
4
5#ifndef IDOL_ROBUST_READ_FROM_FILE_H
6#define IDOL_ROBUST_READ_FROM_FILE_H
7#include "Description.h"
8
9namespace idol::Bilevel {
10 class Description;
11}
12
13namespace idol::Robust {
14 Description read_from_file(Model& t_model, const std::string& t_path_to_par, const std::string& t_path_to_unc);
15
16 void write_to_file(const Model& t_model, const Robust::Description& t_robust_description, const Bilevel::Description& t_bilevel_description, const std::string& t_path_to_files);
17}
18
19#endif //IDOL_ROBUST_READ_FROM_FILE_H