testy kvadratur - řídící makra
Former-commit-id: f45885c614269b701c3ef4939fd00af6e3088400
This commit is contained in:
parent
572a5bb4bd
commit
5b1c1a2b27
|
@ -3,10 +3,19 @@
|
||||||
#include <gsl/gsl_integration.h>
|
#include <gsl/gsl_integration.h>
|
||||||
#include <gsl/gsl_errno.h>
|
#include <gsl/gsl_errno.h>
|
||||||
|
|
||||||
|
#ifndef EPSABS
|
||||||
#define EPSABS 0
|
#define EPSABS 0
|
||||||
|
#endif
|
||||||
|
#ifndef EPSREL
|
||||||
#define EPSREL 1e-8
|
#define EPSREL 1e-8
|
||||||
|
#endif
|
||||||
|
#ifndef LIMIT
|
||||||
#define LIMIT 8192 //???
|
#define LIMIT 8192 //???
|
||||||
#define R0 1
|
#endif
|
||||||
|
#ifndef R0
|
||||||
|
#define R0 8e-6
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* Relevant quadrature methods from gsl:
|
/* Relevant quadrature methods from gsl:
|
||||||
* gsl_integration_qagiu
|
* gsl_integration_qagiu
|
||||||
|
|
Loading…
Reference in New Issue