Mercurial > hg > octave-nkf
annotate liboctave/numeric/Quad.cc @ 20761:b7ac1e94266e
maint: Further clean up of functions in ode/private dir.
* AbsRel_Norm.m, fuzzy_compare.m, integrate_adaptive.m, integrate_const.m,
integrate_n_steps.m, ode_struct_value_check.m, odepkg_event_handle.m,
odepkg_structure_check.m, runge_kutta_45_dorpri.m:
Place latest copyright first in file.
Use two spaces before beginning single-line comment.
Use parentheses around variable to be tested in switch stmt.
Use space between function name and opening parenthesis.
author | Rik <rik@octave.org> |
---|---|
date | Mon, 05 Oct 2015 12:03:16 -0700 |
parents | 5dfaaaae784f |
children |
rev | line source |
---|---|
3 | 1 /* |
2 | |
19898
4197fc428c7d
maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents:
17769
diff
changeset
|
3 Copyright (C) 1993-2015 John W. Eaton |
3 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
3 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
3 | 20 |
21 */ | |
22 | |
238 | 23 #ifdef HAVE_CONFIG_H |
1192 | 24 #include <config.h> |
3 | 25 #endif |
26 | |
27 #include "Quad.h" | |
1847 | 28 #include "f77-fcn.h" |
2292 | 29 #include "lo-error.h" |
4180 | 30 #include "quit.h" |
3 | 31 #include "sun-utils.h" |
32 | |
33 static integrand_fcn user_fcn; | |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
34 static float_integrand_fcn float_user_fcn; |
3 | 35 |
17769
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
36 // FIXME: would be nice to not have to have this global variable. |
260 | 37 // Nonzero means an error occurred in the calculation of the integrand |
38 // function, and the user wants us to quit. | |
39 int quad_integration_error = 0; | |
40 | |
5275 | 41 typedef octave_idx_type (*quad_fcn_ptr) (double*, int&, double*); |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
42 typedef octave_idx_type (*quad_float_fcn_ptr) (float*, int&, float*); |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11570
diff
changeset
|
43 |
3 | 44 extern "C" |
4552 | 45 { |
46 F77_RET_T | |
47 F77_FUNC (dqagp, DQAGP) (quad_fcn_ptr, const double&, const double&, | |
11518 | 48 const octave_idx_type&, const double*, |
49 const double&, const double&, double&, | |
50 double&, octave_idx_type&, octave_idx_type&, | |
51 const octave_idx_type&, const octave_idx_type&, | |
52 octave_idx_type&, octave_idx_type*, double*); | |
3 | 53 |
4552 | 54 F77_RET_T |
11518 | 55 F77_FUNC (dqagi, DQAGI) (quad_fcn_ptr, const double&, |
56 const octave_idx_type&, const double&, | |
57 const double&, double&, double&, | |
58 octave_idx_type&, octave_idx_type&, | |
59 const octave_idx_type&, const octave_idx_type&, | |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11570
diff
changeset
|
60 octave_idx_type&, octave_idx_type*, double*); |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
61 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
62 F77_RET_T |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
63 F77_FUNC (qagp, QAGP) (quad_float_fcn_ptr, const float&, const float&, |
10314
07ebe522dac2
untabify liboctave C++ sources
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
64 const octave_idx_type&, const float*, const float&, |
07ebe522dac2
untabify liboctave C++ sources
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
65 const float&, float&, float&, octave_idx_type&, |
11518 | 66 octave_idx_type&, const octave_idx_type&, |
67 const octave_idx_type&, octave_idx_type&, | |
68 octave_idx_type*, float*); | |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
69 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
70 F77_RET_T |
11518 | 71 F77_FUNC (qagi, QAGI) (quad_float_fcn_ptr, const float&, |
72 const octave_idx_type&, const float&, | |
73 const float&, float&, float&, octave_idx_type&, | |
74 octave_idx_type&, const octave_idx_type&, | |
75 const octave_idx_type&, octave_idx_type&, | |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11570
diff
changeset
|
76 octave_idx_type*, float*); |
4552 | 77 } |
3 | 78 |
5275 | 79 static octave_idx_type |
3136 | 80 user_function (double *x, int& ierr, double *result) |
3 | 81 { |
4180 | 82 BEGIN_INTERRUPT_WITH_EXCEPTIONS; |
83 | |
9179
5be2e6696772
use access_double and assign_double on sparc only
Carsten Clark <tantumquantum+gnuoctave@gmail.com>
parents:
9169
diff
changeset
|
84 #if defined (__sparc) && defined (__GNUC__) |
3 | 85 double xx = access_double (x); |
86 #else | |
87 double xx = *x; | |
88 #endif | |
89 | |
260 | 90 quad_integration_error = 0; |
91 | |
3136 | 92 double xresult = (*user_fcn) (xx); |
93 | |
9179
5be2e6696772
use access_double and assign_double on sparc only
Carsten Clark <tantumquantum+gnuoctave@gmail.com>
parents:
9169
diff
changeset
|
94 #if defined (__sparc) && defined (__GNUC__) |
3136 | 95 assign_double (result, xresult); |
96 #else | |
97 *result = xresult; | |
98 #endif | |
260 | 99 |
100 if (quad_integration_error) | |
1251 | 101 ierr = -1; |
260 | 102 |
4180 | 103 END_INTERRUPT_WITH_EXCEPTIONS; |
104 | |
3136 | 105 return 0; |
3 | 106 } |
107 | |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
108 static octave_idx_type |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
109 float_user_function (float *x, int& ierr, float *result) |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
110 { |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
111 BEGIN_INTERRUPT_WITH_EXCEPTIONS; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
112 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
113 quad_integration_error = 0; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
114 |
9169
b1e82cc8a9f3
eliminate broken special case for copying floats on Sun systems
Carsten Clark <tantumquantum+gnuoctave@gmail.com>
parents:
8920
diff
changeset
|
115 *result = (*float_user_fcn) (*x); |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
116 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
117 if (quad_integration_error) |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
118 ierr = -1; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
119 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
120 END_INTERRUPT_WITH_EXCEPTIONS; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
121 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
122 return 0; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
123 } |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
124 |
3 | 125 double |
17769
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
126 DefQuad::do_integrate (octave_idx_type& ier, octave_idx_type& neval, |
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
127 double& abserr) |
3 | 128 { |
20439
5dfaaaae784f
Deprecate Array::capacity() and Sparse::capacity() for numel() and nzmax().
Carnë Draug <carandraug@octave.org>
parents:
19898
diff
changeset
|
129 octave_idx_type npts = singularities.numel () + 2; |
3 | 130 double *points = singularities.fortran_vec (); |
131 double result = 0.0; | |
1935 | 132 |
5275 | 133 octave_idx_type leniw = 183*npts - 122; |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
134 Array<octave_idx_type> iwork (dim_vector (leniw, 1)); |
5275 | 135 octave_idx_type *piwork = iwork.fortran_vec (); |
1935 | 136 |
5275 | 137 octave_idx_type lenw = 2*leniw - npts; |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
138 Array<double> work (dim_vector (lenw, 1)); |
1935 | 139 double *pwork = work.fortran_vec (); |
140 | |
3 | 141 user_fcn = f; |
5275 | 142 octave_idx_type last; |
3 | 143 |
289 | 144 double abs_tol = absolute_tolerance (); |
145 double rel_tol = relative_tolerance (); | |
146 | |
1935 | 147 F77_XFCN (dqagp, DQAGP, (user_function, lower_limit, upper_limit, |
10314
07ebe522dac2
untabify liboctave C++ sources
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
148 npts, points, abs_tol, rel_tol, result, |
07ebe522dac2
untabify liboctave C++ sources
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
149 abserr, neval, ier, leniw, lenw, last, |
07ebe522dac2
untabify liboctave C++ sources
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
150 piwork, pwork)); |
3 | 151 |
152 return result; | |
153 } | |
154 | |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
155 float |
7924 | 156 DefQuad::do_integrate (octave_idx_type&, octave_idx_type&, float&) |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
157 { |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
158 (*current_liboctave_error_handler) ("incorrect integration function called"); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
159 return 0.0; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
160 } |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
161 |
3 | 162 double |
17769
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
163 IndefQuad::do_integrate (octave_idx_type& ier, octave_idx_type& neval, |
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
164 double& abserr) |
3 | 165 { |
166 double result = 0.0; | |
1935 | 167 |
5275 | 168 octave_idx_type leniw = 128; |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
169 Array<octave_idx_type> iwork (dim_vector (leniw, 1)); |
5275 | 170 octave_idx_type *piwork = iwork.fortran_vec (); |
1935 | 171 |
5275 | 172 octave_idx_type lenw = 8*leniw; |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
173 Array<double> work (dim_vector (lenw, 1)); |
1935 | 174 double *pwork = work.fortran_vec (); |
175 | |
3 | 176 user_fcn = f; |
5275 | 177 octave_idx_type last; |
3 | 178 |
5275 | 179 octave_idx_type inf; |
3 | 180 switch (type) |
181 { | |
182 case bound_to_inf: | |
183 inf = 1; | |
184 break; | |
1360 | 185 |
3 | 186 case neg_inf_to_bound: |
187 inf = -1; | |
188 break; | |
1360 | 189 |
3 | 190 case doubly_infinite: |
191 inf = 2; | |
192 break; | |
1360 | 193 |
3 | 194 default: |
195 assert (0); | |
196 break; | |
197 } | |
198 | |
289 | 199 double abs_tol = absolute_tolerance (); |
200 double rel_tol = relative_tolerance (); | |
201 | |
1935 | 202 F77_XFCN (dqagi, DQAGI, (user_function, bound, inf, abs_tol, rel_tol, |
10314
07ebe522dac2
untabify liboctave C++ sources
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
203 result, abserr, neval, ier, leniw, lenw, |
07ebe522dac2
untabify liboctave C++ sources
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
204 last, piwork, pwork)); |
3 | 205 |
206 return result; | |
207 } | |
208 | |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
209 float |
7924 | 210 IndefQuad::do_integrate (octave_idx_type&, octave_idx_type&, float&) |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
211 { |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
212 (*current_liboctave_error_handler) ("incorrect integration function called"); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
213 return 0.0; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
214 } |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
215 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
216 double |
7924 | 217 FloatDefQuad::do_integrate (octave_idx_type&, octave_idx_type&, double&) |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
218 { |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
219 (*current_liboctave_error_handler) ("incorrect integration function called"); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
220 return 0.0; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
221 } |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
222 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
223 float |
17769
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
224 FloatDefQuad::do_integrate (octave_idx_type& ier, octave_idx_type& neval, |
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
225 float& abserr) |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
226 { |
20439
5dfaaaae784f
Deprecate Array::capacity() and Sparse::capacity() for numel() and nzmax().
Carnë Draug <carandraug@octave.org>
parents:
19898
diff
changeset
|
227 octave_idx_type npts = singularities.numel () + 2; |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
228 float *points = singularities.fortran_vec (); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
229 float result = 0.0; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
230 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
231 octave_idx_type leniw = 183*npts - 122; |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
232 Array<octave_idx_type> iwork (dim_vector (leniw, 1)); |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
233 octave_idx_type *piwork = iwork.fortran_vec (); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
234 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
235 octave_idx_type lenw = 2*leniw - npts; |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
236 Array<float> work (dim_vector (lenw, 1)); |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
237 float *pwork = work.fortran_vec (); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
238 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
239 float_user_fcn = ff; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
240 octave_idx_type last; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
241 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
242 float abs_tol = single_precision_absolute_tolerance (); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
243 float rel_tol = single_precision_relative_tolerance (); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
244 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
245 F77_XFCN (qagp, QAGP, (float_user_function, lower_limit, upper_limit, |
10314
07ebe522dac2
untabify liboctave C++ sources
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
246 npts, points, abs_tol, rel_tol, result, |
07ebe522dac2
untabify liboctave C++ sources
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
247 abserr, neval, ier, leniw, lenw, last, |
07ebe522dac2
untabify liboctave C++ sources
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
248 piwork, pwork)); |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
249 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
250 return result; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
251 } |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
252 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
253 double |
7924 | 254 FloatIndefQuad::do_integrate (octave_idx_type&, octave_idx_type&, double&) |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
255 { |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
256 (*current_liboctave_error_handler) ("incorrect integration function called"); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
257 return 0.0; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
258 } |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
259 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
260 float |
17769
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
261 FloatIndefQuad::do_integrate (octave_idx_type& ier, octave_idx_type& neval, |
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
262 float& abserr) |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
263 { |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
264 float result = 0.0; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
265 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
266 octave_idx_type leniw = 128; |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
267 Array<octave_idx_type> iwork (dim_vector (leniw, 1)); |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
268 octave_idx_type *piwork = iwork.fortran_vec (); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
269 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
270 octave_idx_type lenw = 8*leniw; |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
271 Array<float> work (dim_vector (lenw, 1)); |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
272 float *pwork = work.fortran_vec (); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
273 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
274 float_user_fcn = ff; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
275 octave_idx_type last; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
276 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
277 octave_idx_type inf; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
278 switch (type) |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
279 { |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
280 case bound_to_inf: |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
281 inf = 1; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
282 break; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
283 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
284 case neg_inf_to_bound: |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
285 inf = -1; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
286 break; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
287 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
288 case doubly_infinite: |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
289 inf = 2; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
290 break; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
291 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
292 default: |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
293 assert (0); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
294 break; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
295 } |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
296 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
297 float abs_tol = single_precision_absolute_tolerance (); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
298 float rel_tol = single_precision_relative_tolerance (); |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
299 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
300 F77_XFCN (qagi, QAGI, (float_user_function, bound, inf, abs_tol, rel_tol, |
10314
07ebe522dac2
untabify liboctave C++ sources
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
301 result, abserr, neval, ier, leniw, lenw, |
07ebe522dac2
untabify liboctave C++ sources
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
302 last, piwork, pwork)); |
7805
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
303 |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
304 return result; |
62affb34e648
Make quad work with single precision
David Bateman <dbateman@free.fr>
parents:
7482
diff
changeset
|
305 } |