Skip to content

Commit 8c183cc

Browse files
committed
fix compilation
1 parent b6afda7 commit 8c183cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

integration/VODE/actual_integrator.H

+3-3
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ void actual_integrator (BurnT& state, amrex::Real dt, bool is_retry=false)
134134

135135
// Get the number of RHS and Jacobian evaluations.
136136

137-
state.n_rhs = vode_state.NFE;
138-
state.n_jac = vode_state.NJE;
139-
state.n_step = vode_state.NST;
137+
state.n_rhs = vode_state.n_rhs;
138+
state.n_jac = vode_state.n_jac;
139+
state.n_step = vode_state.n_step;
140140

141141
// VODE does not always fail even though it can lead to unphysical states.
142142
// Add some checks that indicate a burn fail even if VODE thinks the

0 commit comments

Comments
 (0)