[#76442] [Ruby trunk Feature#11741] Migrate Ruby to Git from Subversion — naruse@...
Issue #11741 has been updated by Yui NARUSE.
3 messages
2016/07/19
[#76515] [Ruby trunk Bug#12610] webrick: protect from httpoxy — nagachika00@...
Issue #12610 has been updated by Tomoyuki Chikanaga.
3 messages
2016/07/22
[ruby-core:76312] [Ruby trunk Feature#12217] Introducing Enumerable#sum for precision compensated summation and revert r54237
From:
akr@...
Date:
2016-07-08 01:25:18 UTC
List:
ruby-core #76312
Issue #12217 has been updated by Akira Tanaka.
Richard Schneeman wrote:
> Would be nice if we could match behavior with Rails Enumerable#sum https://github.com/rails/rails/blob/3d716b9e66e334c113c98fb3fc4bcf8a945b93a1/activesupport/lib/active_support/core_ext/enumerable.rb#L2-L27
I don't like it because the behavior is too complex.
For example, [false].sum returns 0.
It is difficult to document (and understand) the behavior.
----------------------------------------
Feature #12217: Introducing Enumerable#sum for precision compensated summation and revert r54237
https://bugs.ruby-lang.org/issues/12217#change-59548
* Author: Kenta Murata
* Status: Closed
* Priority: Normal
* Assignee: Kenta Murata
----------------------------------------
In this issue I propose to introduce Enumerable#sum for precision compensated summation of an array of floating point numbers.
In r54237, I've changed Enumerable#inject to support precision compensated summation for summing up floating point numbers.
But I noticed that this commit broke the equality of `ary.inject(:+) == ary.inject {|a, x| a + x }`.
I think this equality is important property of inject method, so I don't want to break it.
And because precision compensated algorithms are complicated, I think they are provided in the standard library, especially simple summation.
---Files--------------------------------
inject-plus.txt (1.21 MB)
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>