1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-05 11:45:56 +01:00

Increase max iterations in test of MR solver with staggered action

This commit is contained in:
Daniel Richtmann 2018-02-07 17:45:57 +01:00
parent 323ed1a588
commit cd61e2e6d6
No known key found for this signature in database
GPG Key ID: B33C490AF0772057

View File

@ -62,7 +62,7 @@ int main (int argc, char ** argv)
ImprovedStaggeredFermionR Ds(Umu,Umu,Grid,RBGrid,mass);
MdagMLinearOperator<ImprovedStaggeredFermionR,FermionField> HermOp(Ds);
MinimalResidual<FermionField> MR(1.0e-6,10000,0.8);
MinimalResidual<FermionField> MR(1.0e-6,20000,0.8);
MR(HermOp,src,result);
Grid_finalize();