Skip to content

Commit

Permalink
Try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMarechal25 committed Jan 14, 2025
1 parent 94ea1ec commit 4fc4e15
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/cpp/multisolver_interface/SolverConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@

#include "antares-xpansion/xpansion_interfaces/LogUtils.h"

namespace {
const std::string save_ext = ".svf";
const std::string default_ext = ".mps";
}
SolverConfig::SolverConfig(std::string solver_name) {
init(std::move(solver_name));
}
Expand All @@ -36,6 +32,8 @@ void SolverConfig::init(std::string solver_name) {
}
std::filesystem::path SolverConfig::FileName(const std::string& problemName,
std::string solverName) {
const std::string save_ext = ".svf";
const std::string default_ext = ".mps";
if (problemName == "master") return {"master"};
SolverConfig solverConfig(std::move(solverName));
std::filesystem::path path{problemName};
Expand Down

0 comments on commit 4fc4e15

Please sign in to comment.