From 9175c98e81173305f85c46d1c569974811401df9 Mon Sep 17 00:00:00 2001 From: Piyush Sharda <34922596+psharda@users.noreply.github.com> Date: Tue, 27 Aug 2024 13:43:06 +0200 Subject: [PATCH] VODE_LMAX cannot be a constexpr anymore --- integration/VODE/vode_type.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/VODE/vode_type.H b/integration/VODE/vode_type.H index 099f20448..15218e495 100644 --- a/integration/VODE/vode_type.H +++ b/integration/VODE/vode_type.H @@ -22,7 +22,7 @@ constexpr amrex::Real HMIN = 0.0_rt; constexpr amrex::Real vode_increase_change_factor = 4.0_rt; constexpr amrex::Real vode_decrease_change_factor = 0.25_rt; -constexpr int VODE_LMAX = integrator_rp::VODE_MAXORD + 1; +int VODE_LMAX = integrator_rp::VODE_MAXORD + 1; // How many timesteps should pass before refreshing the Jacobian constexpr int max_steps_between_jacobian_evals = 50;