From b9b312fb1d1ad5518a489c93acc957612bd99778 Mon Sep 17 00:00:00 2001 From: "Eric T. Johnson" Date: Sat, 6 Jul 2024 18:07:24 -0400 Subject: [PATCH] Update RHS::dgefa call for AMReX-Astro/Microphysics#1603 --- Source/sdc/sdc_newton_solve.H | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/sdc/sdc_newton_solve.H b/Source/sdc/sdc_newton_solve.H index 580b3e6c43..bdc06fc113 100644 --- a/Source/sdc/sdc_newton_solve.H +++ b/Source/sdc/sdc_newton_solve.H @@ -159,8 +159,7 @@ sdc_newton_solve(const Real dt_m, // solve the linear system: Jac dU = -f #ifdef NEW_NETWORK_IMPLEMENTATION - RHS::dgefa(Jac); - info = 0; + RHS::dgefa(Jac, info); #else IArray1D ipvt; dgefa(Jac, ipvt, info);