Skip to content

Commit

Permalink
Fix test_nullspace
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrubeck committed Feb 1, 2024
1 parent f308750 commit 1b85d20
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tests/regression/test_nullspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,9 @@ def test_nullspace_mixed_multiple_components():
'ksp_type': 'fgmres',
'pc_type': 'python',
'pc_python_type': 'firedrake.MassInvPC',
'Mp_ksp_type': 'cg',
'Mp_pc_type': 'sor',
'Mp_pc_type': 'ksp',
'Mp_ksp_ksp_type': 'cg',
'Mp_ksp_pc_type': 'sor',
'ksp_rtol': '1e-7',
'ksp_monitor': None,
}
Expand Down Expand Up @@ -362,8 +363,9 @@ def test_near_nullspace_mixed(aux_pc):
'ksp_converged_reason': None,
'pc_type': 'python',
'pc_python_type': 'firedrake.MassInvPC',
'Mp_ksp_type': 'cg',
'Mp_pc_type': 'sor',
'Mp_pc_type': 'ksp',
'Mp_ksp_ksp_type': 'cg',
'Mp_ksp_pc_type': 'sor',
'ksp_rtol': '1e-5',
'ksp_monitor': None,
}
Expand Down

0 comments on commit 1b85d20

Please sign in to comment.