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:
@ -176,8 +176,9 @@ inline void makeRBPrecCGSolver(Application &application, std::string &solverName
|
||||
if (!(VirtualMachine::getInstance().hasModule(solverName)))
|
||||
{
|
||||
MSolver::RBPrecCG::Par solverPar;
|
||||
solverPar.action = actionName;
|
||||
solverPar.residual = residual;
|
||||
solverPar.action = actionName;
|
||||
solverPar.residual = residual;
|
||||
solverPar.maxIteration = 10000;
|
||||
application.createModule<MSolver::RBPrecCG>(solverName,
|
||||
solverPar);
|
||||
}
|
||||
|
Reference in New Issue
Block a user