From face63fe5c0151135bb48961350e6cfb7656678d Mon Sep 17 00:00:00 2001 From: Scott MacLachlan Date: Mon, 16 Dec 2024 14:08:02 -0330 Subject: [PATCH] MUMPS to the rescue --- tests/test_galerkin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_galerkin.py b/tests/test_galerkin.py index 409715e..0c4de9a 100644 --- a/tests/test_galerkin.py +++ b/tests/test_galerkin.py @@ -50,7 +50,7 @@ def test_1d_heat_dirichletbc(order, basis_type): DirichletBC(V, u_0, 1), ] - luparams = {"mat_type": "aij", "ksp_type": "preonly", "pc_type": "lu"} + luparams = {"mat_type": "aij", "ksp_type": "preonly", "pc_type": "lu", "pc_factor_mat_solver_type": "mumps"} stepper = GalerkinTimeStepper( F, order, t, dt, u, bcs=bc, basis_type=basis_type,