Skip to content

Commit

Permalink
add missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
moritzgubler committed Aug 18, 2023
1 parent dffcad9 commit f5aeb60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vc_sqnm/sqnm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ namespace sqnm_space
double l2 = (df_dx - prev_df_dx).norm() / (alpha * prev_df_dx.norm());
alpha = 1.0 / std::max(l1, l2);
std::cout << "Automatic initial step size guess for geometry optimization: " << alpha << '\n';
std::cout << "Should be between 0.4 and 8. If there are problems in the geometry optimization, consider setting the initial step size manually."
std::cout << "Should be between 0.4 and 8. If there are problems in the geometry optimization, consider setting the initial step size manually.";
this->estimate_step_size = false;

Check warning on line 143 in src/vc_sqnm/sqnm.hpp

View check run for this annotation

Codecov / codecov/patch

src/vc_sqnm/sqnm.hpp#L137-L143

Added lines #L137 - L143 were not covered by tests
} else
{
Expand Down

0 comments on commit f5aeb60

Please sign in to comment.