1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-13 01:05:36 +00:00
This commit is contained in:
Peter Boyle 2015-07-21 12:12:29 +09:00
parent 2da20f1443
commit 021478af3b

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;
}; };