Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / ieee754 / dbl-64 / gamma_productf.c
blob60c6f7bceb5e64fb6bfbe2419df2e354c37af71c
1 /* Compute a product of X, X+1, ..., with an error estimate.
2 Copyright (C) 2013-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <math.h>
20 #include <math_private.h>
21 #include <float.h>
23 /* Compute the product of X + X_EPS, X + X_EPS + 1, ..., X + X_EPS + N
24 - 1, in the form R * (1 + *EPS) where the return value R is an
25 approximation to the product and *EPS is set to indicate the
26 approximate error in the return value. X is such that all the
27 values X + 1, ..., X + N - 1 are exactly representable, and X_EPS /
28 X is small enough that factors quadratic in it can be
29 neglected. */
31 float
32 __gamma_productf (float x, float x_eps, int n, float *eps)
34 double x_full = (double) x + (double) x_eps;
35 double ret = x_full;
36 for (int i = 1; i < n; i++)
37 ret *= x_full + i;
39 #if FLT_EVAL_METHOD != 0
40 volatile
41 #endif
42 float fret = ret;
43 *eps = (ret - fret) / fret;
45 return fret;