Skip to content

Commit

Permalink
Local matf solve: add a maxit argument to control the solver.
Browse files Browse the repository at this point in the history
  • Loading branch information
sv2518 committed Jun 15, 2022
1 parent afd6787 commit 8aff2c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions gem/gem.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@
"Ponr",
"diag_prec",
"rtol",
"atol"])
DEFAULT_MSC = MatfreeSolveContext(*(False, None, None, None, None, False, "1.e-12", "1.e-70"))
"atol",
"max_it"])
DEFAULT_MSC = MatfreeSolveContext(*(False, None, None, None, None, False, "1.e-12", "1.e-70", None))

class NodeMeta(type):
"""Metaclass of GEM nodes.
Expand Down

0 comments on commit 8aff2c4

Please sign in to comment.