Mercurial > hg > octave-lyh
diff liboctave/SparseQR.h @ 5792:eb90c83b4f91
[project @ 2006-05-04 20:14:49 by dbateman]
author | dbateman |
---|---|
date | Thu, 04 May 2006 20:14:50 +0000 |
parents | 6cb607fcf41c |
children | 143b556ce725 |
line wrap: on
line diff
--- a/liboctave/SparseQR.h +++ b/liboctave/SparseQR.h @@ -74,9 +74,9 @@ SparseQR_rep *rep; public: - SparseQR (void) : rep (new SparseQR_rep (SparseMatrix(), -1)) { } + SparseQR (void) : rep (new SparseQR_rep (SparseMatrix(), 0)) { } - SparseQR (const SparseMatrix& a, int order = -1) : + SparseQR (const SparseMatrix& a, int order = 0) : rep (new SparseQR_rep (a, order)) { } SparseQR (const SparseQR& a) : rep (a.rep) { rep->count++; }