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

Didn't like a print statement

This commit is contained in:
Peter Boyle 2015-05-21 06:36:15 +01:00
parent 341096dce8
commit d0d41b8bce

View File

@ -15,7 +15,6 @@ public:
Integer MaxIterations;
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);};