Skip to content

Commit

Permalink
Minor format change in stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
ttadano committed Jun 20, 2022
1 parent edd8f71 commit e74a072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/optimize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ double Optimize::crossvalidation(const std::string job_prefix,

if (verbosity > 0) {
std::vector<std::string> str_linearmodel{"Elastic-net", "Adaptive LASSO"};
std::cout << str_linearmodel[optcontrol.linear_model - 2];
std::cout << " " << str_linearmodel[optcontrol.linear_model - 2];
std::cout << " cross-validation with the following parameters:\n";
std::cout << " L1_RATIO = " << optcontrol.l1_ratio << '\n';
std::cout << " CV = " << std::setw(15) << optcontrol.cross_validation << '\n';
Expand Down

0 comments on commit e74a072

Please sign in to comment.