Skip to content

Commit

Permalink
Update SolverXpress.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
a-zakir authored Oct 13, 2023
1 parent c7b3175 commit d16cd56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpp/multisolver_interface/SolverXpress.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ std::mutex SolverXpress::license_guard;
const std::map<int, std::string> TYPETONAME = {{1, "rows"}, {2, "columns"}};

SolverXpress::SolverXpress(SolverLogManager &log_manager) : SolverXpress() {
if (solverLogManager_.log_file_path != "") {
if (solverLogManager.log_file_path != "") {
_log_stream.open(_log_file, std::ofstream::out | std::ofstream::app);
_log_file = solverLogManager_->log_file_path;
_log_file = solverLogManager->log_file_path;
add_stream(_log_stream);
}
}
Expand Down

0 comments on commit d16cd56

Please sign in to comment.