1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-19 16:27:05 +01:00

Hadrons: maximum iteration specified for tests and error if 0

This commit is contained in:
2018-03-09 19:53:55 +00:00
parent 2f849ee252
commit 70ec2faa98
7 changed files with 25 additions and 13 deletions

View File

@ -82,8 +82,9 @@ int main(int argc, char *argv[])
// solvers
MSolver::RBPrecCG::Par solverPar;
solverPar.action = "DWF_" + flavour[i];
solverPar.residual = 1.0e-8;
solverPar.action = "DWF_" + flavour[i];
solverPar.residual = 1.0e-8;
solverPar.maxIteration = 10000;
application.createModule<MSolver::RBPrecCG>("CG_" + flavour[i],
solverPar);
}