From 3f0c6077c54eacdf3836595b5128f57f42e8462b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Oct 2024 18:50:46 -0600 Subject: [PATCH] Auto-format code changes (#680) Auto-format code using Clang-Format Co-authored-by: GitHub Actions --- include/micm/solver/rosenbrock.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/micm/solver/rosenbrock.inl b/include/micm/solver/rosenbrock.inl index b50314bee..bb2226819 100644 --- a/include/micm/solver/rosenbrock.inl +++ b/include/micm/solver/rosenbrock.inl @@ -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;