176 const unsigned bits[] = {
177 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 4,
178 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 5,
179 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 4,
180 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 6,
181 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 4,
182 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 5,
183 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 4,
184 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 7,
185 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 4,
186 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 5,
187 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 4,
188 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 6,
189 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 4,
190 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 5,
191 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 4,
192 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 8,
196 while ((
n & 0xff) == 0xff) {
200 return bit + bits[
n & 0xff];
438 const unsigned n = 8;
439 const double xgk[8] = {
440 0.991455371120812639206854697526329,
441 0.949107912342758524526189684047851,
442 0.864864423359769072789712788640926,
443 0.741531185599394439863864773280788,
444 0.586087235467691130294144838258730,
445 0.405845151377397166906606412076961,
446 0.207784955007898467600689403773245,
447 0.000000000000000000000000000000000
451 static const double wg[4] = {
452 0.129484966168869693270611432679082,
453 0.279705391489276667901467771423780,
454 0.381830050505118944950369775488975,
455 0.417959183673469387755102040816327
457 static const double wgk[8] = {
458 0.022935322010529224963732008058970,
459 0.063092092629978553290700663189204,
460 0.104790010322250183839876322541518,
461 0.140653259715525918745189590510238,
462 0.169004726639267902826583426598550,
463 0.190350578064785409913256402421014,
464 0.204432940075298892414161999234649,
465 0.209482141084727828012999174891714
468 const double center = h->
data[0];
469 const double width = h->
data[1];
470 double fv1[7], fv2[7];
471 const double f_center = f(1, ¢er, fdata);
472 double result_gauss = f_center * wg[
n/2 - 1];
473 double result_kronrod = f_center * wgk[
n - 1];
474 double result_abs = fabs(result_kronrod);
475 double result_asc, mean, err;
480 for (j = 0; j < (
n - 1) / 2; ++j) {
481 unsigned int j2 = 2*j + 1;
482 double x, f1, f2, fsum, w = width * xgk[j2];
483 x = center - w; fv1[j2] = f1 = f(1, &x, fdata);
484 x = center + w; fv2[j2] = f2 = f(1, &x, fdata);
486 result_gauss += wg[j] * fsum;
487 result_kronrod += wgk[j2] * fsum;
488 result_abs += wgk[j2] * (fabs(f1) + fabs(f2));
491 for (j = 0; j <
n/2; ++j) {
492 unsigned int j2 = 2*j;
493 double x, f1, f2, w = width * xgk[j2];
494 x = center - w; fv1[j2] = f1 = f(1, &x, fdata);
495 x = center + w; fv2[j2] = f2 = f(1, &x, fdata);
496 result_kronrod += wgk[j2] * (f1 + f2);
497 result_abs += wgk[j2] * (fabs(f1) + fabs(f2));
501 ee->
val = result_kronrod * width;
504 mean = result_kronrod * 0.5;
505 result_asc = wgk[
n - 1] * fabs(f_center - mean);
506 for (j = 0; j <
n - 1; ++j)
507 result_asc += wgk[j] * (fabs(fv1[j]-mean) + fabs(fv2[j]-mean));
508 err = (result_kronrod - result_gauss) * width;
511 if (result_asc != 0 && err != 0) {
512 double scale = pow((200 * err / result_asc), 1.5);
514 err = result_asc * scale;
518 if (result_abs > DBL_MIN / (50 * DBL_EPSILON)) {
519 double min_err = 50 * DBL_EPSILON * result_abs;