diff src/DLD-FUNCTIONS/symbfact.cc @ 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 01f703952eff
children 990762e784fe
line wrap: on
line diff
--- a/src/DLD-FUNCTIONS/symbfact.cc	Thu Jan 20 17:21:27 2011 -0500
+++ b/src/DLD-FUNCTIONS/symbfact.cc	Thu Jan 20 17:24:59 2011 -0500
@@ -271,7 +271,7 @@
           octave_idx_type lnz = 0 ;
           for (octave_idx_type j = 0 ; j < n ; j++)
             lnz += ColCount [j] ;
-        
+
 
           // allocate the output matrix L (pattern-only)
           SparseBoolMatrix L (n, n, lnz);
@@ -292,7 +292,7 @@
             W [j] = L.xcidx(j);
 
           // get workspace for computing one row of L
-          cholmod_sparse *R = cholmod_allocate_sparse (n, 1, n, false, true, 
+          cholmod_sparse *R = cholmod_allocate_sparse (n, 1, n, false, true,
                                                        0, CHOLMOD_PATTERN, cm);
           octave_idx_type *Rp = static_cast<octave_idx_type *>(R->p);
           octave_idx_type *Ri = static_cast<octave_idx_type *>(R->i);