comparison liboctave/Quad.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 331fcc41ca23
comparison
equal deleted inserted replaced
10311:a217e1d74353 10312:cbc402e64d83
131 131
132 DefQuad (integrand_fcn fcn, double ll, double ul) 132 DefQuad (integrand_fcn fcn, double ll, double ul)
133 : Quad (fcn), lower_limit (ll), upper_limit (ul), singularities () { } 133 : Quad (fcn), lower_limit (ll), upper_limit (ul), singularities () { }
134 134
135 DefQuad (integrand_fcn fcn, double ll, double ul, 135 DefQuad (integrand_fcn fcn, double ll, double ul,
136 const ColumnVector& sing) 136 const ColumnVector& sing)
137 : Quad (fcn), lower_limit (ll), upper_limit (ul), 137 : Quad (fcn), lower_limit (ll), upper_limit (ul),
138 singularities (sing) { } 138 singularities (sing) { }
139 139
140 DefQuad (integrand_fcn fcn, const ColumnVector& sing) 140 DefQuad (integrand_fcn fcn, const ColumnVector& sing)
141 : Quad (fcn), lower_limit (0.0), upper_limit (1.0), 141 : Quad (fcn), lower_limit (0.0), upper_limit (1.0),
193 193
194 FloatDefQuad (float_integrand_fcn fcn, float ll, float ul) 194 FloatDefQuad (float_integrand_fcn fcn, float ll, float ul)
195 : Quad (fcn), lower_limit (ll), upper_limit (ul), singularities () { } 195 : Quad (fcn), lower_limit (ll), upper_limit (ul), singularities () { }
196 196
197 FloatDefQuad (float_integrand_fcn fcn, float ll, float ul, 197 FloatDefQuad (float_integrand_fcn fcn, float ll, float ul,
198 const FloatColumnVector& sing) 198 const FloatColumnVector& sing)
199 : Quad (fcn), lower_limit (ll), upper_limit (ul), 199 : Quad (fcn), lower_limit (ll), upper_limit (ul),
200 singularities (sing) { } 200 singularities (sing) { }
201 201
202 FloatDefQuad (float_integrand_fcn fcn, const FloatColumnVector& sing) 202 FloatDefQuad (float_integrand_fcn fcn, const FloatColumnVector& sing)
203 : Quad (fcn), lower_limit (0.0), upper_limit (1.0), 203 : Quad (fcn), lower_limit (0.0), upper_limit (1.0),