Skip to content

Commit 0605476

Browse files
committed
Fix atol/rtol forgotten in PR #568
1 parent 998f352 commit 0605476

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

smt/utils/linear_solvers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def _setup(self, mtx, printer, mg_matrices=[]):
264264
self.callback_func = self.callback._print_sol
265265
self.solver_kwargs = {
266266
"atol": 0.0,
267-
"rtol": self.options["atol"],
267+
"rtol": self.options["rtol"],
268268
"maxiter": self.options["ilimit"],
269269
}
270270
elif self.options["solver"] == "bicgstab":

0 commit comments

Comments
 (0)