From e5e82f905638cb3b97bc234afc28181f80ef412b Mon Sep 17 00:00:00 2001 From: Spencer Bryngelson Date: Sat, 21 Feb 2026 17:57:29 -0500 Subject: [PATCH] Fix domain decomposition overwriting muscl_order The IGR conditional block unconditionally reset recon_order to weno_order in its else branch, overwriting the muscl_order that was correctly set by the recon_type check above. Remove the else branch so the original recon_order is preserved when IGR is inactive. Co-Authored-By: Claude Opus 4.6 --- src/common/m_mpi_common.fpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/common/m_mpi_common.fpp b/src/common/m_mpi_common.fpp index 293acfb489..52901c021f 100644 --- a/src/common/m_mpi_common.fpp +++ b/src/common/m_mpi_common.fpp @@ -1146,8 +1146,6 @@ contains if (igr) then recon_order = igr_order - else - recon_order = weno_order end if ! 3D Cartesian Processor Topology