X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fmath%2Fchart-geometry.c;h=eb0ad9282a854885768472319a899dbfba6c14ea;hb=fa1fffd5c789d9c7875fc3bdf556eaf017cf524e;hp=0f6da46edefd0c2fd0d93162b42344ddd7ebd85d;hpb=9f650fc3d2946c216e6cd3c7922a8a63d0f97117;p=pspp diff --git a/src/math/chart-geometry.c b/src/math/chart-geometry.c index 0f6da46ede..eb0ad9282a 100644 --- a/src/math/chart-geometry.c +++ b/src/math/chart-geometry.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2004 Free Software Foundation, Inc. - 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 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 3 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. + 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., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #include #include @@ -22,26 +20,32 @@ #include "chart-geometry.h" -/* Adjust tick to be a sensible value +static const double standard_ticks[] = {1, 2, 5, 10}; + + +/* Adjust tick to be a sensible value ie: ... 0.1,0.2,0.5, 1,2,5, 10,20,50 ... */ double -chart_rounded_tick(double tick) +chart_rounded_tick (double tick) { - int i; double diff = DBL_MAX; double t = tick; - - static const double standard_ticks[] = {1, 2, 5, 10}; - const double factor = pow(10,ceil(log10(standard_ticks[0] / tick))) ; + double factor; + + /* Avoid arithmetic problems with very small values */ + if (fabs (tick) < DBL_EPSILON) + return 0; + + factor = pow (10,ceil (log10 (standard_ticks[0] / tick))); - for (i = 3 ; i >= 0 ; --i) + for (i = 3 ; i >= 0 ; --i) { - const double d = fabs( tick - standard_ticks[i] / factor ) ; + const double d = fabs (tick - standard_ticks[i] / factor); - if ( d < diff ) + if ( d < diff ) { diff = d; t = standard_ticks[i] / factor ; @@ -49,6 +53,5 @@ chart_rounded_tick(double tick) } return t; - }