Skip to content

Commit

Permalink
Fix post merge
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMarechal25 committed Dec 1, 2022
1 parent a6608b5 commit 96cbf04
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/cpp/lpnamer/problem_modifier/MasterGeneration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@

#include <algorithm>
#include <filesystem>
#include <utility>

#include "LauncherHelpers.h"
#include "MasterProblemBuilder.h"
#include "multisolver_interface/SolverAbstract.h"

MasterGeneration::MasterGeneration(
const std::filesystem::path &rootPath, const std::vector<ActiveLink> &links,
const AdditionalConstraints &additionalConstraints_p, Couplings &couplings,
std::string const &master_formulation, std::string const &solver_name,
const AdditionalConstraints &additionalConstraints_p,
const Couplings &couplings, std::string const &master_formulation,
std::string const &solver_name,
ProblemGenerationLog::ProblemGenerationLoggerSharedPointer logger,
const std::filesystem::path &log_file_path)
: logger_(logger) {
: logger_(std::move(logger)) {
add_candidates(links);
write_master_mps(rootPath, master_formulation, solver_name,
additionalConstraints_p, log_file_path);
Expand Down

0 comments on commit 96cbf04

Please sign in to comment.