1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 19:25:56 +01:00
This commit is contained in:
Peter Boyle 2015-07-21 12:12:29 +09:00
parent 7907e4ca03
commit 8a7b7f1e2b

View File

@ -15,7 +15,7 @@ public:
Integer MaxIterations; Integer MaxIterations;
int verbose; int verbose;
ConjugateGradient(RealD tol,Integer maxit) : Tolerance(tol), MaxIterations(maxit) { ConjugateGradient(RealD tol,Integer maxit) : Tolerance(tol), MaxIterations(maxit) {
verbose=1; verbose=0;
}; };