Actions
Bug #7724
closed6 bugs with Range#bsearch over floats
Bug #7724:
6 bugs with Range#bsearch over floats
Description
Take the following code, with from, to and search all Integer or all Float:
(from...to).bsearch{|f| f >= search}
I expected it to:
0) never yield and return nil if range is empty, i.e. from >= to ("trivial test")
- never yield more than 65 times for floats
or Math.log(to-from, 2)+1 for Integer ("log test") - return search if from <= search < to, nil otherwise ("coverage test")
- never yield the same
f
("uniqueness test") - if range is exclusive, never yield
to
nor returnto
; if range is inclusive and block returns false always yieldto
("end of range test") - never yield a number < from or > to ("out of range test")
These conditions are all respected for Integers but all can be broken for Floats
Test 0, 1, 3, 4 & 5 fail even for small ordinary float values, while test 2 requires some larger floats, say 1e100 to fail.
For example bsearch can yield over 2000 times (instead of at most 65).
These tests and a correct Ruby implementation of bsearch can be found here: https://github.com/marcandre/backports/compare/marcandre:master...marcandre:bsearch
My implementation also passes the MRI tests.
Actions
Like0
Like0Like0Like0Like0