*** empty log message ***

This commit is contained in:
jiri 2008-12-18 16:07:06 +00:00
parent f73b10534f
commit 7ddf566aa1
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@
template<typename T, typename Matrix>
extern bool conjgrad(const Matrix &bigmat, const NRVec<T> &b, NRVec<T> &x, const bool doguess, const double tol, const int itmax, const bool verbose, bool issquare,const bool precondition)
extern bool conjgrad(const Matrix &bigmat, const NRVec<T> &b, NRVec<T> &x, const bool doguess=true, const double tol=1e-8, const int itmax=1000, const bool verbose=true, bool issquare=1,const bool precondition=1)
{
int m=bigmat.nrows();
int n=bigmat.ncols();