1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-18 15:57:05 +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;
FlexibleCommunicationAvoidingGeneralisedMinimalResidual<LatticeFermion> FCAGMRES(1.0e-8, 50, simple, 25);
FlexibleCommunicationAvoidingGeneralisedMinimalResidual<LatticeFermion> FCAGMRES(1.0e-8, 10000, simple, 25);
FCAGMRES(HermOp,src,result);
Grid_finalize();