1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00

Corrected solver in rare kaon test

This commit is contained in:
Lanny91 2017-04-10 17:42:55 +01:00
parent 5e477ec553
commit ac1253bb76

View File

@ -109,11 +109,10 @@ int main(int argc, char *argv[])
application.createModule<MAction::DWF>("DWF_" + flavour[i], actionPar);
// solvers
// RBPrecCG -> CG
MSolver::CG::Par solverPar;
solverPar.action = "DWF_" + flavour[i];
solverPar.residual = 1.0e-8;
application.createModule<MSolver::CG>(solvers[i],
application.createModule<MSolver::RBPrecCG>(solvers[i],
solverPar);
}