Skip to content

Commit

Permalink
Merge pull request #19 from phbasler/develop
Browse files Browse the repository at this point in the history
Fixed outfile for PlotEWBG_vw
  • Loading branch information
JonasMueller1991 authored Jul 6, 2020
2 parents fd3133f + b331df5 commit 1bdb638
Show file tree
Hide file tree
Showing 6 changed files with 164 additions and 149 deletions.
2 changes: 1 addition & 1 deletion src/prog/CalculateEWBG.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ CLIOptions::CLIOptions(int argc, char *argv[])
ConfigFile = args.at(5);
if(argc == 8) {
std::string s7 = argv[6];
TerminalOutput = ("y" == std::string(argv[6]));
TerminalOutput = ("y" == std::string(args.at(6)));
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/prog/PlotEWBG_mu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ CLIOptions::CLIOptions(int argc, char *argv[])
NumberOfSteps = std::stoi(args.at(4));
ConfigFile = args.at(5);
if(argc == 8) {
TerminalOutput = ("y" == std::string(argv[6]));
TerminalOutput = ("y" == std::string(args.at(6)));
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/prog/PlotEWBG_nL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ CLIOptions::CLIOptions(int argc, char *argv[])
vw = std::stod(args.at(4));
ConfigFile = args.at(5);
if(argc == 8) {
TerminalOutput = ("y" == std::string(argv[6]));
TerminalOutput = ("y" == std::string(args.at(6)));
}
}
}
Expand Down
Loading

0 comments on commit 1bdb638

Please sign in to comment.