1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 15:55:37 +00:00

Didn't like a print statement

This commit is contained in:
Peter Boyle 2015-05-21 06:36:15 +01:00
parent d806581666
commit 57a01e6bbb

View File

@ -15,7 +15,6 @@ public:
Integer MaxIterations; Integer MaxIterations;
ConjugateGradient(RealD tol,Integer maxit) : Tolerance(tol), MaxIterations(maxit) { ConjugateGradient(RealD tol,Integer maxit) : Tolerance(tol), MaxIterations(maxit) {
std::cout << Tolerance<<std::endl;
}; };
void operator() (LinearOperatorBase<Field> &Linop,const Field &src, Field &psi) {assert(0);}; void operator() (LinearOperatorBase<Field> &Linop,const Field &src, Field &psi) {assert(0);};