diff options
author | Alberto Ruiz <aruiz@um.es> | 2007-09-11 17:34:24 +0000 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2007-09-11 17:34:24 +0000 |
commit | cd937c2be2900b8f13506d9ae7c731ad43d74e05 (patch) | |
tree | 8a4161c6510aac58b3ab85041145fb19ea6c5615 /lib/GSL/gsl-aux.h | |
parent | 834b4837799611fd7fbaa9609ea587e041cb0ca1 (diff) |
allow setting off GSL default error handler
Diffstat (limited to 'lib/GSL/gsl-aux.h')
-rw-r--r-- | lib/GSL/gsl-aux.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/GSL/gsl-aux.h b/lib/GSL/gsl-aux.h index 2be07c1..8f8618a 100644 --- a/lib/GSL/gsl-aux.h +++ b/lib/GSL/gsl-aux.h | |||
@@ -10,6 +10,8 @@ | |||
10 | #define KCVEC(A) int A##n, const gsl_complex*A##p | 10 | #define KCVEC(A) int A##n, const gsl_complex*A##p |
11 | #define KCMAT(A) int A##r, int A##c, const gsl_complex* A##p | 11 | #define KCMAT(A) int A##r, int A##c, const gsl_complex* A##p |
12 | 12 | ||
13 | void no_abort_on_error(); | ||
14 | |||
13 | int toScalarR(int code, KRVEC(x), RVEC(r)); | 15 | int toScalarR(int code, KRVEC(x), RVEC(r)); |
14 | /* norm2, absdif, maximum, posmax, etc. */ | 16 | /* norm2, absdif, maximum, posmax, etc. */ |
15 | 17 | ||
@@ -58,10 +60,3 @@ int minimizeWithDeriv(double f(int, double*), void df(int, double*, double*), | |||
58 | KRVEC(xi), RMAT(sol)); | 60 | KRVEC(xi), RMAT(sol)); |
59 | 61 | ||
60 | int deriv(int code, double f(double, void*), double x, double h, double * result, double * abserr); | 62 | int deriv(int code, double f(double, void*), double x, double h, double * result, double * abserr); |
61 | |||
62 | double gsl_sf_erf(double); | ||
63 | double gsl_sf_erf_Z(double); | ||
64 | double gsl_sf_gamma(double); | ||
65 | |||
66 | int gsl_sf_bessel_J0_e(double, double*); // hmmm... | ||
67 | int gsl_sf_exp_e10_e(double, double*); // HMMMMM... | ||