/usr/include/gsl/gsl_integration.h is in libgsl-dev 2.4+dfsg-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 | /* integration/gsl_integration.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __GSL_INTEGRATION_H__
#define __GSL_INTEGRATION_H__
#include <stdlib.h>
#include <gsl/gsl_math.h>
#undef __BEGIN_DECLS
#undef __END_DECLS
#ifdef __cplusplus
# define __BEGIN_DECLS extern "C" {
# define __END_DECLS }
#else
# define __BEGIN_DECLS /* empty */
# define __END_DECLS /* empty */
#endif
__BEGIN_DECLS
/* Workspace for adaptive integrators */
typedef struct
{
size_t limit;
size_t size;
size_t nrmax;
size_t i;
size_t maximum_level;
double *alist;
double *blist;
double *rlist;
double *elist;
size_t *order;
size_t *level;
}
gsl_integration_workspace;
gsl_integration_workspace *
gsl_integration_workspace_alloc (const size_t n);
void
gsl_integration_workspace_free (gsl_integration_workspace * w);
/* Workspace for QAWS integrator */
typedef struct
{
double alpha;
double beta;
int mu;
int nu;
double ri[25];
double rj[25];
double rg[25];
double rh[25];
}
gsl_integration_qaws_table;
gsl_integration_qaws_table *
gsl_integration_qaws_table_alloc (double alpha, double beta, int mu, int nu);
int
gsl_integration_qaws_table_set (gsl_integration_qaws_table * t,
double alpha, double beta, int mu, int nu);
void
gsl_integration_qaws_table_free (gsl_integration_qaws_table * t);
/* Workspace for QAWO integrator */
enum gsl_integration_qawo_enum { GSL_INTEG_COSINE, GSL_INTEG_SINE };
typedef struct
{
size_t n;
double omega;
double L;
double par;
enum gsl_integration_qawo_enum sine;
double *chebmo;
}
gsl_integration_qawo_table;
gsl_integration_qawo_table *
gsl_integration_qawo_table_alloc (double omega, double L,
enum gsl_integration_qawo_enum sine,
size_t n);
int
gsl_integration_qawo_table_set (gsl_integration_qawo_table * t,
double omega, double L,
enum gsl_integration_qawo_enum sine);
int
gsl_integration_qawo_table_set_length (gsl_integration_qawo_table * t,
double L);
void
gsl_integration_qawo_table_free (gsl_integration_qawo_table * t);
/* Definition of an integration rule */
typedef void gsl_integration_rule (const gsl_function * f,
double a, double b,
double *result, double *abserr,
double *defabs, double *resabs);
void gsl_integration_qk15 (const gsl_function * f, double a, double b,
double *result, double *abserr,
double *resabs, double *resasc);
void gsl_integration_qk21 (const gsl_function * f, double a, double b,
double *result, double *abserr,
double *resabs, double *resasc);
void gsl_integration_qk31 (const gsl_function * f, double a, double b,
double *result, double *abserr,
double *resabs, double *resasc);
void gsl_integration_qk41 (const gsl_function * f, double a, double b,
double *result, double *abserr,
double *resabs, double *resasc);
void gsl_integration_qk51 (const gsl_function * f, double a, double b,
double *result, double *abserr,
double *resabs, double *resasc);
void gsl_integration_qk61 (const gsl_function * f, double a, double b,
double *result, double *abserr,
double *resabs, double *resasc);
void gsl_integration_qcheb (gsl_function * f, double a, double b,
double *cheb12, double *cheb24);
/* The low-level integration rules in QUADPACK are identified by small
integers (1-6). We'll use symbolic constants to refer to them. */
enum
{
GSL_INTEG_GAUSS15 = 1, /* 15 point Gauss-Kronrod rule */
GSL_INTEG_GAUSS21 = 2, /* 21 point Gauss-Kronrod rule */
GSL_INTEG_GAUSS31 = 3, /* 31 point Gauss-Kronrod rule */
GSL_INTEG_GAUSS41 = 4, /* 41 point Gauss-Kronrod rule */
GSL_INTEG_GAUSS51 = 5, /* 51 point Gauss-Kronrod rule */
GSL_INTEG_GAUSS61 = 6 /* 61 point Gauss-Kronrod rule */
};
void
gsl_integration_qk (const int n, const double xgk[],
const double wg[], const double wgk[],
double fv1[], double fv2[],
const gsl_function *f, double a, double b,
double * result, double * abserr,
double * resabs, double * resasc);
int gsl_integration_qng (const gsl_function * f,
double a, double b,
double epsabs, double epsrel,
double *result, double *abserr,
size_t * neval);
int gsl_integration_qag (const gsl_function * f,
double a, double b,
double epsabs, double epsrel, size_t limit,
int key,
gsl_integration_workspace * workspace,
double *result, double *abserr);
int gsl_integration_qagi (gsl_function * f,
double epsabs, double epsrel, size_t limit,
gsl_integration_workspace * workspace,
double *result, double *abserr);
int gsl_integration_qagiu (gsl_function * f,
double a,
double epsabs, double epsrel, size_t limit,
gsl_integration_workspace * workspace,
double *result, double *abserr);
int gsl_integration_qagil (gsl_function * f,
double b,
double epsabs, double epsrel, size_t limit,
gsl_integration_workspace * workspace,
double *result, double *abserr);
int gsl_integration_qags (const gsl_function * f,
double a, double b,
double epsabs, double epsrel, size_t limit,
gsl_integration_workspace * workspace,
double *result, double *abserr);
int gsl_integration_qagp (const gsl_function * f,
double *pts, size_t npts,
double epsabs, double epsrel, size_t limit,
gsl_integration_workspace * workspace,
double *result, double *abserr);
int gsl_integration_qawc (gsl_function *f,
const double a, const double b, const double c,
const double epsabs, const double epsrel, const size_t limit,
gsl_integration_workspace * workspace,
double * result, double * abserr);
int gsl_integration_qaws (gsl_function * f,
const double a, const double b,
gsl_integration_qaws_table * t,
const double epsabs, const double epsrel,
const size_t limit,
gsl_integration_workspace * workspace,
double *result, double *abserr);
int gsl_integration_qawo (gsl_function * f,
const double a,
const double epsabs, const double epsrel,
const size_t limit,
gsl_integration_workspace * workspace,
gsl_integration_qawo_table * wf,
double *result, double *abserr);
int gsl_integration_qawf (gsl_function * f,
const double a,
const double epsabs,
const size_t limit,
gsl_integration_workspace * workspace,
gsl_integration_workspace * cycle_workspace,
gsl_integration_qawo_table * wf,
double *result, double *abserr);
/* Workspace for fixed-order Gauss-Legendre integration */
typedef struct
{
size_t n; /* number of points */
double *x; /* Gauss abscissae/points */
double *w; /* Gauss weights for each abscissae */
int precomputed; /* high precision abscissae/weights precomputed? */
}
gsl_integration_glfixed_table;
gsl_integration_glfixed_table *
gsl_integration_glfixed_table_alloc (size_t n);
void
gsl_integration_glfixed_table_free (gsl_integration_glfixed_table * t);
/* Routine for fixed-order Gauss-Legendre integration */
double
gsl_integration_glfixed (const gsl_function *f,
double a,
double b,
const gsl_integration_glfixed_table * t);
/* Routine to retrieve the i-th Gauss-Legendre point and weight from t */
int
gsl_integration_glfixed_point (double a,
double b,
size_t i,
double *xi,
double *wi,
const gsl_integration_glfixed_table * t);
/* Cquad integration - Pedro Gonnet */
/* Data of a single interval */
typedef struct
{
double a, b;
double c[64];
double fx[33];
double igral, err;
int depth, rdepth, ndiv;
} gsl_integration_cquad_ival;
/* The workspace is just a collection of intervals */
typedef struct
{
size_t size;
gsl_integration_cquad_ival *ivals;
size_t *heap;
} gsl_integration_cquad_workspace;
gsl_integration_cquad_workspace *
gsl_integration_cquad_workspace_alloc (const size_t n);
void
gsl_integration_cquad_workspace_free (gsl_integration_cquad_workspace * w);
int
gsl_integration_cquad (const gsl_function * f, double a, double b,
double epsabs, double epsrel,
gsl_integration_cquad_workspace * ws,
double *result, double *abserr, size_t * nevals);
/* IQPACK related structures and routines */
typedef struct
{
double alpha;
double beta;
double a;
double b;
double zemu;
double shft;
double slp;
double al;
double be;
} gsl_integration_fixed_params;
typedef struct
{
int (*check)(const size_t n, const gsl_integration_fixed_params * params);
int (*init)(const size_t n, double * diag, double * subdiag, gsl_integration_fixed_params * params);
} gsl_integration_fixed_type;
typedef struct
{
size_t n; /* number of nodes/weights */
double *weights; /* quadrature weights */
double *x; /* quadrature nodes */
double *diag; /* diagonal of Jacobi matrix */
double *subdiag; /* subdiagonal of Jacobi matrix */
const gsl_integration_fixed_type * type;
} gsl_integration_fixed_workspace;
/* IQPACK integral types */
GSL_VAR const gsl_integration_fixed_type * gsl_integration_fixed_legendre;
GSL_VAR const gsl_integration_fixed_type * gsl_integration_fixed_chebyshev;
GSL_VAR const gsl_integration_fixed_type * gsl_integration_fixed_gegenbauer;
GSL_VAR const gsl_integration_fixed_type * gsl_integration_fixed_jacobi;
GSL_VAR const gsl_integration_fixed_type * gsl_integration_fixed_laguerre;
GSL_VAR const gsl_integration_fixed_type * gsl_integration_fixed_hermite;
GSL_VAR const gsl_integration_fixed_type * gsl_integration_fixed_exponential;
GSL_VAR const gsl_integration_fixed_type * gsl_integration_fixed_rational;
GSL_VAR const gsl_integration_fixed_type * gsl_integration_fixed_chebyshev2;
gsl_integration_fixed_workspace *
gsl_integration_fixed_alloc(const gsl_integration_fixed_type * type, const size_t n,
const double a, const double b, const double alpha, const double beta);
void gsl_integration_fixed_free(gsl_integration_fixed_workspace * w);
size_t gsl_integration_fixed_n(const gsl_integration_fixed_workspace * w);
double *gsl_integration_fixed_nodes(const gsl_integration_fixed_workspace * w);
double *gsl_integration_fixed_weights(const gsl_integration_fixed_workspace * w);
int gsl_integration_fixed(const gsl_function * func, double * result,
const gsl_integration_fixed_workspace * w);
__END_DECLS
#endif /* __GSL_INTEGRATION_H__ */
|