Skip to content

Commit

Permalink
[gram_schmidt] increase reiteration_tol to 9e-1
Browse files Browse the repository at this point in the history
see discussion in #1067
  • Loading branch information
sdrave committed Nov 12, 2020
1 parent 2f7955a commit c57558e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pymor/algorithms/gram_schmidt.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

@defaults('atol', 'rtol', 'reiterate', 'reiteration_threshold', 'check', 'check_tol')
def gram_schmidt(A, product=None, return_R=False, atol=1e-13, rtol=1e-13, offset=0,
reiterate=True, reiteration_threshold=1e-1, check=True, check_tol=1e-3,
reiterate=True, reiteration_threshold=9e-1, check=True, check_tol=1e-3,
copy=True):
"""Orthonormalize a |VectorArray| using the modified Gram-Schmidt algorithm.
Expand Down

0 comments on commit c57558e

Please sign in to comment.