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

Rare K test solver name fix

This commit is contained in:
Antonin Portelli 2017-04-10 17:48:58 +01:00
parent fe8d625694
commit 90ec6eda0c

View File

@ -110,10 +110,10 @@ int main(int argc, char *argv[])
// solvers
// RBPrecCG -> CG
MSolver::CG::Par solverPar;
MSolver::RBPrecCG::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);
}