Skip to content

Commit 1b677f2

Browse files
authored
Fix solver parameters for Stokes test (#4514)
1 parent 9152b9d commit 1b677f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/firedrake/macro/test_macro_solve.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def test_stokes(mh, variant, mixed_element):
151151
Z,
152152
[Z.sub(0), VectorSpaceBasis(constant=True, comm=COMM_WORLD)]
153153
)
154-
solve(a == L, zh, bcs=bcs, nullspace=nullspace, solver_parameters={"ksp_type": "preonly", "pc_type": "cholesky", "pc_factor_mat_solver_type": "mumps"})
154+
solve(a == L, zh, bcs=bcs, nullspace=nullspace)
155155

156156
uh, ph = zh.subfunctions
157157
u_err.append(errornorm(as_vector(uexact), uh))

0 commit comments

Comments
 (0)