Added script front-end for primer-design code
[htsworkflow.git] / htswanalysis / MACS / lib / gsl / gsl-1.11 / sys / fcmp.c
1 /* sys/gsl_compare.c
2  * 
3  * Copyright (C) 2002 Gert Van den Eynde
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  * 
19  * Based on fcmp 1.2.2 Copyright (c) 1998-2000 Theodore C. Belding
20  * University of Michigan Center for the Study of Complex Systems
21  * Ted.Belding@umich.edu
22  *
23  */
24
25 #include <config.h>
26 #include <gsl/gsl_sys.h>
27 #include <math.h>
28
29 int
30 gsl_fcmp (const double x1, const double x2, const double epsilon)
31 {
32   int exponent;
33   double delta, difference;
34
35   /* Find exponent of largest absolute value */
36
37   {
38     double max = (fabs (x1) > fabs (x2)) ? x1 : x2;
39
40     frexp (max, &exponent);
41   }
42
43   /* Form a neighborhood of size  2 * delta */
44
45   delta = ldexp (epsilon, exponent);
46
47   difference = x1 - x2;
48
49   if (difference > delta)       /* x1 > x2 */
50     {
51       return 1;
52     }
53   else if (difference < -delta) /* x1 < x2 */
54     {
55       return -1;
56     }
57   else                          /* -delta <= difference <= delta */
58     {
59       return 0;                 /* x1 ~=~ x2 */
60     }
61 }
62