diff liboctave/sparse-base-lu.cc @ 10314:07ebe522dac2

untabify liboctave C++ sources
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:23:32 -0500
parents 4c0cdbe0acca
children fd0a3ac60b0e
line wrap: on
line diff
--- a/liboctave/sparse-base-lu.cc	Thu Feb 11 12:16:43 2010 -0500
+++ b/liboctave/sparse-base-lu.cc	Thu Feb 11 12:23:32 2010 -0500
@@ -42,20 +42,20 @@
   for (octave_idx_type j = 0; j < nc; j++)
     {
       for (octave_idx_type i = Ufact.cidx (j); i < Ufact.cidx(j + 1); i++)
-	{
-	  Yout.xridx (ii) = Ufact.ridx(i);
-	  Yout.xdata (ii++) = Ufact.data(i);
-	}
+        {
+          Yout.xridx (ii) = Ufact.ridx(i);
+          Yout.xdata (ii++) = Ufact.data(i);
+        }
       if (j < rcmin)
-	{
-	  // Note the +1 skips the 1.0 on the diagonal 
-	  for (octave_idx_type i = Lfact.cidx (j) + 1; 
-	       i < Lfact.cidx(j +1); i++)
-	    {
-	      Yout.xridx (ii) = Lfact.ridx(i);
-	      Yout.xdata (ii++) = Lfact.data(i);
-	    }
-	}
+        {
+          // Note the +1 skips the 1.0 on the diagonal 
+          for (octave_idx_type i = Lfact.cidx (j) + 1; 
+               i < Lfact.cidx(j +1); i++)
+            {
+              Yout.xridx (ii) = Lfact.ridx(i);
+              Yout.xdata (ii++) = Lfact.data(i);
+            }
+        }
       Yout.xcidx(j + 1) = ii;
     }