1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-08-01 12:17:06 +01:00

Make solver parameters match in all MR|GMRES solver tests

This commit is contained in:
Daniel Richtmann
2018-02-08 17:33:10 +01:00
parent 9f79a87102
commit 13ae371ef8
7 changed files with 10 additions and 10 deletions

View File

@@ -61,7 +61,7 @@ int main (int argc, char ** argv)
TrivialPrecon<LatticeFermion> simple;
FlexibleGeneralisedMinimalResidual<LatticeFermion> FGMRES(1.0e-8, 50, simple, 25);
FlexibleGeneralisedMinimalResidual<LatticeFermion> FGMRES(1.0e-8, 10000, simple, 25);
FGMRES(HermOp,src,result);
Grid_finalize();