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

Perform some minor changes to GMRES code

This commit is contained in:
Daniel Richtmann
2017-11-06 16:17:44 +01:00
parent 74af31564f
commit 8363edfcdb
2 changed files with 76 additions and 33 deletions

View File

@ -58,7 +58,7 @@ int main (int argc, char ** argv)
WilsonFermionR Dw(Umu,Grid,RBGrid,mass);
MdagMLinearOperator<WilsonFermionR,LatticeFermion> HermOp(Dw);
GeneralisedMinimalResidual<LatticeFermion> GMRES(1.0e-8,10000);
GeneralisedMinimalResidual<LatticeFermion> GMRES(1.0e-8,10000, 1);
GMRES(HermOp,src,result);
Grid_finalize();