-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathtest.c
326 lines (297 loc) · 8.6 KB
/
test.c
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
/* Test program for hcubature/pcubature.
*
* Copyright (c) 2005-2013 Steven G. Johnson
*
* Portions (see comments) based on HIntLib (also distributed under
* the GNU GPL, v2 or later), copyright (c) 2002-2005 Rudolf Schuerer.
* (http://www.cosy.sbg.ac.at/~rschuer/hintlib/)
*
* Portions (see comments) based on GNU GSL (also distributed under
* the GNU GPL, v2 or later), copyright (c) 1996-2000 Brian Gough.
* (http://www.gnu.org/software/gsl/)
*
* 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 2 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
/* Usage: ./test <dim> <tol> <integrand> <maxeval>
where <dim> = # dimensions, <tol> = relative tolerance,
<integrand> is either 0/1/2 for the three test integrands (see below),
and <maxeval> is the maximum # function evaluations (0 for none).
Compile with -DSCUBATURE to test scubature instead of cubature.
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "cubature.h"
#define VERBOSE 0
#if defined(PCUBATURE)
# define cubature pcubature
#else
# define cubature hcubature
#endif
int count = 0;
unsigned integrand_fdim = 0;
int *which_integrand = NULL;
const double radius = 0.50124145262344534123412; /* random */
/* Simple constant function */
double
fconst (double x[], size_t dim, void *params)
{
return 1;
}
/*** f0, f1, f2, and f3 are test functions from the Monte-Carlo
integration routines in GSL 1.6 (monte/test.c). Copyright (c)
1996-2000 Michael Booth, GNU GPL. ****/
/* Simple product function */
double f0 (unsigned dim, const double *x, void *params)
{
double prod = 1.0;
unsigned int i;
for (i = 0; i < dim; ++i)
prod *= 2.0 * x[i];
return prod;
}
#define K_2_SQRTPI 1.12837916709551257390
/* Gaussian centered at 1/2. */
double f1 (unsigned dim, const double *x, void *params)
{
double a = *(double *)params;
double sum = 0.;
unsigned int i;
for (i = 0; i < dim; i++) {
double dx = x[i] - 0.5;
sum += dx * dx;
}
return (pow (K_2_SQRTPI / (2. * a), (double) dim) *
exp (-sum / (a * a)));
}
/* double gaussian */
double f2 (unsigned dim, const double *x, void *params)
{
double a = *(double *)params;
double sum1 = 0.;
double sum2 = 0.;
unsigned int i;
for (i = 0; i < dim; i++) {
double dx1 = x[i] - 1. / 3.;
double dx2 = x[i] - 2. / 3.;
sum1 += dx1 * dx1;
sum2 += dx2 * dx2;
}
return 0.5 * pow (K_2_SQRTPI / (2. * a), dim)
* (exp (-sum1 / (a * a)) + exp (-sum2 / (a * a)));
}
/* Tsuda's example */
double f3 (unsigned dim, const double *x, void *params)
{
double c = *(double *)params;
double prod = 1.;
unsigned int i;
for (i = 0; i < dim; i++)
prod *= c / (c + 1) * pow((c + 1) / (c + x[i]), 2.0);
return prod;
}
/* test integrand from W. J. Morokoff and R. E. Caflisch, "Quasi=
Monte Carlo integration," J. Comput. Phys 122, 218-230 (1995).
Designed for integration on [0,1]^dim, integral = 1. */
static double morokoff(unsigned dim, const double *x, void *params)
{
double p = 1.0 / dim;
double prod = pow(1 + p, dim);
unsigned int i;
for (i = 0; i < dim; i++)
prod *= pow(x[i], p);
return prod;
}
/*** end of GSL test functions ***/
int f_test(unsigned dim, const double *x, void *data_,
unsigned fdim, double *retval)
{
double val;
unsigned i, j;
++count;
(void) data_; /* not used */
for (j = 0; j < fdim; ++j) {
double fdata = which_integrand[j] == 6 ? (1.0+sqrt (10.0))/9.0 : 0.1;
switch (which_integrand[j]) {
case 0: /* simple smooth (separable) objective: prod. cos(x[i]). */
val = 1;
for (i = 0; i < dim; ++i)
val *= cos(x[i]);
break;
case 1: { /* integral of exp(-x^2), rescaled to (0,infinity) limits */
double scale = 1.0;
val = 0;
for (i = 0; i < dim; ++i) {
if (x[i] > 0) {
double z = (1 - x[i]) / x[i];
val += z * z;
scale *= K_2_SQRTPI / (x[i] * x[i]);
}
else {
scale = 0;
break;
}
}
val = exp(-val) * scale;
break;
}
case 2: /* discontinuous objective: volume of hypersphere */
val = 0;
for (i = 0; i < dim; ++i)
val += x[i] * x[i];
val = val < radius * radius;
break;
case 3:
val = f0(dim, x, &fdata);
break;
case 4:
val = f1(dim, x, &fdata);
break;
case 5:
val = f2(dim, x, &fdata);
break;
case 6:
val = f3(dim, x, &fdata);
break;
case 7:
val = morokoff(dim, x, &fdata);
break;
case 8: /* from HCubature.jl#4 */
if (dim != 3) {
fprintf(stderr, "test 8 requires dim == 3\n");
exit(EXIT_FAILURE);
}
val = x[0]*0.2 * (x[2]-0.5)*0.4 * sin(x[1] * 6.283185307179586);
val = 1 + val*val;
break;
default:
fprintf(stderr, "unknown integrand %d\n", which_integrand[j]);
exit(EXIT_FAILURE);
}
#if VERBOSE
if (count < 100) {
printf("%d: f(%g", count, x[0]);
for (i = 1; i < dim; ++i) printf(", %g", x[i]);
printf(") = %g\n", val);
}
#endif
retval[j] = val;
}
return 0;
}
#define K_PI 3.14159265358979323846
/* surface area of n-dimensional unit hypersphere */
static double S(unsigned n)
{
double val;
int fact = 1;
if (n % 2 == 0) { /* n even */
val = 2 * pow(K_PI, n * 0.5);
n = n / 2;
while (n > 1) fact *= (n -= 1);
val /= fact;
}
else { /* n odd */
val = (1 << (n/2 + 1)) * pow(K_PI, n/2);
while (n > 2) fact *= (n -= 2);
val /= fact;
}
return val;
}
static double exact_integral(int which, unsigned dim, const double *xmax) {
unsigned i;
double val;
switch(which) {
case 0:
val = 1;
for (i = 0; i < dim; ++i)
val *= sin(xmax[i]);
break;
case 2:
val = dim == 0 ? 1 : S(dim) * pow(radius * 0.5, dim) / dim;
break;
default:
val = 1.0;
}
return val;
}
#include <ctype.h>
int main(int argc, char **argv)
{
double *xmin, *xmax;
double tol, *val, *err;
unsigned i, dim, maxEval;
if (argc <= 1) {
fprintf(stderr, "Usage: %s [dim] [reltol] [integrand] [maxeval]\n",
argv[0]);
return EXIT_FAILURE;
}
dim = argc > 1 ? atoi(argv[1]) : 2;
tol = argc > 2 ? atof(argv[2]) : 1e-2;
maxEval = argc > 4 ? atoi(argv[4]) : 0;
/* parse: e.g. "x/y/z" is treated as fdim = 3, which_integrand={x,y,z} */
if (argc <= 3) {
integrand_fdim = 1;
which_integrand = (int *) malloc(sizeof(int) * integrand_fdim);
which_integrand[0] = 0; /* default */
}
else {
unsigned j = 0;
integrand_fdim = 1;
for (i = 0; argv[3][i]; ++i) if (argv[3][i] == '/') ++integrand_fdim;
if (!integrand_fdim) {
fprintf(stderr, "invalid which_integrand \"%s\"", argv[3]);
return EXIT_FAILURE;
}
which_integrand = (int *) malloc(sizeof(int) * integrand_fdim);
which_integrand[0] = 0;
for (i = 0; argv[3][i]; ++i) {
if (argv[3][i] == '/')
which_integrand[++j] = 0;
else if (isdigit(argv[3][i]))
which_integrand[j] =
which_integrand[j]*10 + argv[3][i] - '0';
else {
fprintf(stderr, "invalid which_integrand \"%s\"", argv[3]);
return EXIT_FAILURE;
}
}
}
val = (double *) malloc(sizeof(double) * integrand_fdim);
err = (double *) malloc(sizeof(double) * integrand_fdim);
xmin = (double *) malloc(dim * sizeof(double));
xmax = (double *) malloc(dim * sizeof(double));
for (i = 0; i < dim; ++i) {
xmin[i] = 0;
xmax[i] = 1;
}
printf("%u-dim integral, tolerance = %g\n", dim, tol);
cubature(integrand_fdim, f_test, NULL,
dim, xmin, xmax,
maxEval, 0, tol, ERROR_INDIVIDUAL, val, err);
for (i = 0; i < integrand_fdim; ++i) {
printf("integrand %d: integral = %0.11g, est err = %g, true err = %g\n",
which_integrand[i], val[i], err[i],
fabs(val[i] - exact_integral(which_integrand[i], dim, xmax)));
}
printf("#evals = %d\n", count);
free(xmax);
free(xmin);
free(err);
free(val);
free(which_integrand);
return EXIT_SUCCESS;
}