Antares Xpansion
Investment simulations for Antares studies
Loading...
Searching...
No Matches
StructureGeneration.h
1#pragma once
2#include "LinkProblemsGenerator.h"
3
5{
6public:
7 StructureGeneration(std::filesystem::path output_path,
8 std::string solver_name,
9 ProblemsFormat format = ProblemsFormat::OPTIMIZED);
10
11 void operator()(const std::vector<Candidate>& candidates, const Couplings& couplings) const;
12
13private:
14 void write_structure_file(const std::vector<Candidate>& candidates,
15 const Couplings& couplings) const;
16 std::string solver_name_;
17 ProblemsFormat format_;
18 std::filesystem::path output_path_;
19};
Definition StructureGeneration.h:5