diff liboctave/SparsedbleLU.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/SparsedbleLU.h
+++ b/liboctave/SparsedbleLU.h
@@ -37,12 +37,12 @@
     : sparse_base_lu <SparseMatrix, double, SparseMatrix, double> () { }
 
   SparseLU (const SparseMatrix& a, const Matrix& piv_thres = Matrix(),
-	    bool scale = false);
+            bool scale = false);
 
   SparseLU (const SparseMatrix& 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);
 
   SparseLU (const SparseLU& a) 
     : sparse_base_lu <SparseMatrix, double, SparseMatrix, double> (a) { }
@@ -50,8 +50,8 @@
   SparseLU& operator = (const SparseLU& a)
     {
       if (this != &a)
-	sparse_base_lu <SparseMatrix, double, SparseMatrix, double> 
-	  :: operator = (a);
+        sparse_base_lu <SparseMatrix, double, SparseMatrix, double> 
+          :: operator = (a);
 
       return *this;
     }