Skip to content

Commit

Permalink
VODE_LMAX cannot be a constexpr anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
psharda authored Aug 27, 2024
1 parent fb7f74a commit 9175c98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration/VODE/vode_type.H
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9175c98

Please sign in to comment.