A C++ Framework for Optimization
Loading...
Searching...
No Matches
read_from_file.h
1//
2// Created by henri on 04.03.24.
3//
4
5#ifndef IDOL_READ_FROM_FILE_H
6#define IDOL_READ_FROM_FILE_H
7
8#include <string>
9#include "idol/mixed-integer/modeling/models/Model.h"
10#include "Description.h"
11#include "idol/mixed-integer/optimizers/wrappers/GLPK/GLPK.h"
12
13namespace idol::Bilevel {
14
15 Model read_from_file(Env& t_env, const std::string& t_path_to_aux, Bilevel::Description& t_lower_level_description);
16 std::pair<Model, Bilevel::Description> read_from_file(Env& t_env, const std::string& t_path_to_aux);
17 Description read_bilevel_description(const Model& t_model, const std::string& t_path_to_aux);
18
19}
20
21#endif //IDOL_READ_FROM_FILE_H