Mercurial > hg > octave-lyh
diff liboctave/SparseCmplxLU.h @ 10312:cbc402e64d83
untabify liboctave header files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 11 Feb 2010 12:14:48 -0500 |
parents | 4c0cdbe0acca |
children | fd0a3ac60b0e |
line wrap: on
line diff
--- a/liboctave/SparseCmplxLU.h +++ b/liboctave/SparseCmplxLU.h @@ -39,14 +39,14 @@ : sparse_base_lu <SparseComplexMatrix, Complex, SparseMatrix, double> () { } SparseComplexLU (const SparseComplexMatrix& a, - const Matrix& piv_thres = Matrix (), - bool scale = false); + const Matrix& piv_thres = Matrix (), + bool scale = false); SparseComplexLU (const SparseComplexMatrix& a, const ColumnVector& Qinit, - const Matrix& piv_thres = Matrix (), - bool scale = false, bool FixedQ = false, - double droptol = -1., bool milu = false, - bool udiag = false); + const Matrix& piv_thres = Matrix (), + bool scale = false, bool FixedQ = false, + double droptol = -1., bool milu = false, + bool udiag = false); SparseComplexLU (const SparseComplexLU& a) : sparse_base_lu <SparseComplexMatrix, Complex, SparseMatrix, double> (a) { } @@ -54,8 +54,8 @@ SparseComplexLU& operator = (const SparseComplexLU& a) { if (this != &a) - sparse_base_lu <SparseComplexMatrix, Complex, SparseMatrix, double> - :: operator = (a); + sparse_base_lu <SparseComplexMatrix, Complex, SparseMatrix, double> + :: operator = (a); return *this; }