Skip to content

Commit

Permalink
fix true-SDC compilation due to namespace changes in Microphysics (#2932
Browse files Browse the repository at this point in the history
)
  • Loading branch information
zingale authored Jul 26, 2024
1 parent 0f6eead commit c8ef181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/sdc/sdc_react_util.H
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ single_zone_react_source(burn_t& burn_state,
eos(eos_input_re, burn_state);

// eos_get_small_temp(&small_temp);
burn_state.T = amrex::min(MAX_TEMP, amrex::max(burn_state.T, small_temp));
burn_state.T = std::clamp(burn_state.T, small_temp, integrator_rp::MAX_TEMP);

Array1D<Real, 1, neqs> ydot;

Expand Down

0 comments on commit c8ef181

Please sign in to comment.