comparison liboctave/base-lu.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 4d1fc073fbb7
comparison
equal deleted inserted replaced
10311:a217e1d74353 10312:cbc402e64d83
44 const PermMatrix& p); 44 const PermMatrix& p);
45 45
46 base_lu& operator = (const base_lu& a) 46 base_lu& operator = (const base_lu& a)
47 { 47 {
48 if (this != &a) 48 if (this != &a)
49 { 49 {
50 a_fact = a.a_fact; 50 a_fact = a.a_fact;
51 l_fact = a.l_fact; 51 l_fact = a.l_fact;
52 ipvt = a.ipvt; 52 ipvt = a.ipvt;
53 } 53 }
54 return *this; 54 return *this;
55 } 55 }
56 56
57 ~base_lu (void) { } 57 ~base_lu (void) { }
58 58