diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-05-06 16:48:51 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-05-06 16:48:51 +0000 |
commit | e49203726e2d6feee19d46d12bd93a1fe948248d (patch) | |
tree | b366bd85f807cb806160b0b67393d2255f554bc3 /numeric.c | |
parent | 3f8d7303c18a9a3de1438dfa7299d2e71bbab031 (diff) | |
download | ruby-e49203726e2d6feee19d46d12bd93a1fe948248d.tar.gz |
* 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.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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)); } |