Skip to content

Commit

Permalink
MAINT: Update tests accordingly to new keywords for tols
Browse files Browse the repository at this point in the history
  • Loading branch information
jwboth committed Sep 9, 2024
1 parent d39c98c commit 017b479
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/test_wasserstein.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
amg_options = {
"linear_solver": "amg",
"linear_solver_options": {
"tol": 1e-8,
"atol": 1e-8,
},
"formulation": "pressure",
}
Expand All @@ -137,7 +137,7 @@
ksp_krylov_options = {
"linear_solver": "ksp",
"linear_solver_options": {
"tol": 1e-8,
"rtol": 1e-8,
"approach": "cg",
"pc_type": "hypre",
},
Expand All @@ -147,7 +147,7 @@
ksp_block_krylov_options = {
"linear_solver": "ksp",
"linear_solver_options": {
"tol": 1e-8,
"rtol": 1e-8,
"approach": "gmres",
"pc_type": "hypre",
},
Expand Down

0 comments on commit 017b479

Please sign in to comment.