diff liboctave/SparseCmplxLU.h @ 11586:12df7854fa7c

strip trailing whitespace from source files
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:24:59 -0500
parents fd0a3ac60b0e
children 72c96de7a403
line wrap: on
line diff
--- a/liboctave/SparseCmplxLU.h
+++ b/liboctave/SparseCmplxLU.h
@@ -30,31 +30,31 @@
 
 class
 OCTAVE_API
-SparseComplexLU 
+SparseComplexLU
   : public sparse_base_lu <SparseComplexMatrix, Complex, SparseMatrix, double>
 {
 public:
 
-  SparseComplexLU (void) 
+  SparseComplexLU (void)
     : sparse_base_lu <SparseComplexMatrix, Complex, SparseMatrix, double> () { }
 
-  SparseComplexLU (const SparseComplexMatrix& a, 
+  SparseComplexLU (const SparseComplexMatrix& a,
                    const Matrix& piv_thres = Matrix (),
                    bool scale = false);
 
   SparseComplexLU (const SparseComplexMatrix& a, const ColumnVector& Qinit,
-                   const Matrix& piv_thres = Matrix (), 
+                   const Matrix& piv_thres = Matrix (),
                    bool scale = false, bool FixedQ = false,
                    double droptol = -1., bool milu = false,
                    bool udiag = false);
 
-  SparseComplexLU (const SparseComplexLU& a) 
+  SparseComplexLU (const SparseComplexLU& a)
     : sparse_base_lu <SparseComplexMatrix, Complex, SparseMatrix, double> (a) { }
 
   SparseComplexLU& operator = (const SparseComplexLU& a)
     {
       if (this != &a)
-        sparse_base_lu <SparseComplexMatrix, Complex, SparseMatrix, double> 
+        sparse_base_lu <SparseComplexMatrix, Complex, SparseMatrix, double>
           :: operator = (a);
 
       return *this;