Skip to content
Snippets Groups Projects
Commit 1ec58eb2 authored by Christopher Subich's avatar Christopher Subich
Browse files

Experiment with tighter tolerance for zero-SV in GMRES

parent 7406a072
No related branches found
No related tags found
No related merge requests found
...@@ -218,7 +218,7 @@ template <class Controller> class GMRES_Solver { ...@@ -218,7 +218,7 @@ template <class Controller> class GMRES_Solver {
/* Constants for the LAPACK call */ /* Constants for the LAPACK call */
int LDA = num_its+1, LDB = num_its + 1, NRHS = 1, INFO = 0; int LDA = num_its+1, LDB = num_its + 1, NRHS = 1, INFO = 0;
int RANK; int RANK;
double RCOND = 1e-6; double RCOND = 1e-9;
if (!lapack_workspace) { if (!lapack_workspace) {
assert(!lapack_iworkspace); // Assert that we're not leaking the iworkspace assert(!lapack_iworkspace); // Assert that we're not leaking the iworkspace
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment