diff liboctave/SparseQR.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 a21a3875ca83
line wrap: on
line diff
--- a/liboctave/SparseQR.h
+++ b/liboctave/SparseQR.h
@@ -77,10 +77,10 @@
 private:
   SparseQR_rep *rep;
 
-public:  
+public:
   SparseQR (void) : rep (new SparseQR_rep (SparseMatrix(), 0)) { }
 
-  SparseQR (const SparseMatrix& a, int order = 0) : 
+  SparseQR (const SparseMatrix& a, int order = 0) :
     rep (new SparseQR_rep (a, order)) { }
 
   SparseQR (const SparseQR& a) : rep (a.rep) { rep->count++; }
@@ -118,7 +118,7 @@
 
   Matrix Q (void) const { return rep->Q(); }
 
-  friend Matrix qrsolve (const SparseMatrix &a, const Matrix &b, 
+  friend Matrix qrsolve (const SparseMatrix &a, const Matrix &b,
                          octave_idx_type &info);
 
   friend SparseMatrix qrsolve (const SparseMatrix &a, const SparseMatrix &b,
@@ -127,7 +127,7 @@
   friend ComplexMatrix qrsolve (const SparseMatrix &a, const ComplexMatrix &b,
                                 octave_idx_type &info);
 
-  friend SparseComplexMatrix qrsolve (const SparseMatrix &a, 
+  friend SparseComplexMatrix qrsolve (const SparseMatrix &a,
                                       const SparseComplexMatrix &b,
                                       octave_idx_type &info);
 
@@ -142,10 +142,10 @@
 
 // Publish externally used friend functions.
 
-extern Matrix qrsolve (const SparseMatrix &a, const Matrix &b, 
+extern Matrix qrsolve (const SparseMatrix &a, const Matrix &b,
                        octave_idx_type &info);
 
-extern Matrix qrsolve (const SparseMatrix &a, const MArray<double> &b, 
+extern Matrix qrsolve (const SparseMatrix &a, const MArray<double> &b,
                        octave_idx_type &info);
 
 extern SparseMatrix qrsolve (const SparseMatrix &a, const SparseMatrix &b,
@@ -154,10 +154,10 @@
 extern ComplexMatrix qrsolve (const SparseMatrix &a, const ComplexMatrix &b,
                               octave_idx_type &info);
 
-extern ComplexMatrix qrsolve (const SparseMatrix &a, const MArray<Complex> &b, 
+extern ComplexMatrix qrsolve (const SparseMatrix &a, const MArray<Complex> &b,
                               octave_idx_type &info);
 
-extern SparseComplexMatrix qrsolve (const SparseMatrix &a, 
+extern SparseComplexMatrix qrsolve (const SparseMatrix &a,
                                     const SparseComplexMatrix &b,
                                     octave_idx_type &info);