Skip to content

Commit

Permalink
Fix atol/rtol forgotten in PR #568
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed May 23, 2024
1 parent 998f352 commit 0605476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smt/utils/linear_solvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def _setup(self, mtx, printer, mg_matrices=[]):
self.callback_func = self.callback._print_sol
self.solver_kwargs = {
"atol": 0.0,
"rtol": self.options["atol"],
"rtol": self.options["rtol"],
"maxiter": self.options["ilimit"],
}
elif self.options["solver"] == "bicgstab":
Expand Down

0 comments on commit 0605476

Please sign in to comment.