From 2621657623428ab92eb6573a8944d637239c4d88 Mon Sep 17 00:00:00 2001 From: zhi Date: Wed, 11 Mar 2026 13:11:11 -0400 Subject: [PATCH] fix SDC new thermo_src --- Source/sources/Castro_sources.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Source/sources/Castro_sources.cpp b/Source/sources/Castro_sources.cpp index 4d7e25abb3..8d45900db5 100644 --- a/Source/sources/Castro_sources.cpp +++ b/Source/sources/Castro_sources.cpp @@ -53,7 +53,7 @@ Castro::source_flag(int src) if (time_integration_method == SpectralDeferredCorrections) { return true; } else { - return false; + return false; } #else case thermo_src: @@ -364,11 +364,9 @@ Castro::construct_new_source(int src, MultiFab& source, MultiFab& state_old, Mul construct_new_ext_source(source, state_old, state_new, time, dt); break; -#ifdef MHD case thermo_src: construct_new_thermo_source(source, state_old, state_new, time, dt); break; -#endif case geom_src: construct_new_geom_source(source, state_old, state_new, time, dt);