comparison liboctave/sparse-base-lu.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 fd0a3ac60b0e
children 72c96de7a403
comparison
equal deleted inserted replaced
11585:1473d0cf86d2 11586:12df7854fa7c
46 Yout.xridx (ii) = Ufact.ridx(i); 46 Yout.xridx (ii) = Ufact.ridx(i);
47 Yout.xdata (ii++) = Ufact.data(i); 47 Yout.xdata (ii++) = Ufact.data(i);
48 } 48 }
49 if (j < rcmin) 49 if (j < rcmin)
50 { 50 {
51 // Note the +1 skips the 1.0 on the diagonal 51 // Note the +1 skips the 1.0 on the diagonal
52 for (octave_idx_type i = Lfact.cidx (j) + 1; 52 for (octave_idx_type i = Lfact.cidx (j) + 1;
53 i < Lfact.cidx(j +1); i++) 53 i < Lfact.cidx(j +1); i++)
54 { 54 {
55 Yout.xridx (ii) = Lfact.ridx(i); 55 Yout.xridx (ii) = Lfact.ridx(i);
56 Yout.xdata (ii++) = Lfact.data(i); 56 Yout.xdata (ii++) = Lfact.data(i);
57 } 57 }