summaryrefslogtreecommitdiff
path: root/numeric.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-06 16:48:51 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-06 16:48:51 +0000
commite49203726e2d6feee19d46d12bd93a1fe948248d (patch)
treeb366bd85f807cb806160b0b67393d2255f554bc3 /numeric.c
parent3f8d7303c18a9a3de1438dfa7299d2e71bbab031 (diff)
* numeric.c (num_step): remove epsilon; add margin of 0.5, to make
"1.1.step(1.5,0.1)" to work (third try). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3764 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/numeric.c b/numeric.c
index b5d275f892..afc3590644 100644
--- a/numeric.c
+++ b/numeric.c
@@ -905,14 +905,13 @@ num_step(argc, argv, from)
}
}
else if (TYPE(from) == T_FLOAT || TYPE(to) == T_FLOAT || TYPE(step) == T_FLOAT) {
- const double epsilon = DBL_EPSILON * 2;
double beg = NUM2DBL(from);
double end = NUM2DBL(to);
double unit = NUM2DBL(step);
double n = (end - beg)/unit;
long i;
- n = floor(n + n*epsilon) + 1;
+ n = n + 0.5;
for (i=0; i<n; i++) {
rb_yield(rb_float_new(i*unit+beg));
}