Skip to content

Commit

Permalink
Auto-format code changes (#680)
Browse files Browse the repository at this point in the history
Auto-format code using Clang-Format

Co-authored-by: GitHub Actions <[email protected]>
  • Loading branch information
github-actions[bot] and actions-user authored Oct 19, 2024
1 parent 24d9c19 commit 3f0c607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/micm/solver/rosenbrock.inl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace micm
auto& K = derived_class_temporary_variables->K_;
auto& Yerror = derived_class_temporary_variables->Yerror_;
const double h_max = parameters_.h_max_ == 0.0 ? time_step : std::min(time_step, parameters_.h_max_);
const double h_start =
const double h_start =
parameters_.h_start_ == 0.0 ? std::max(parameters_.h_min_, DELTA_MIN) : std::min(h_max, parameters_.h_start_);

SolverStats stats;
Expand Down

0 comments on commit 3f0c607

Please sign in to comment.