Skip to content

Commit

Permalink
mention #4039 in NEWS
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Aug 13, 2013
1 parent c8f89d1 commit de7bc3f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ Library improvements

* Fast primality testing (da670c4).

* `sum` and `cumsum` now use pairwise summation for better accuracy (#4039).

* `isreadable`/`iswritable` functions added for more IO types (#3872).

* `combinations` now returns an iterator instead of a task (#3989)
Expand Down

4 comments on commit de7bc3f

@StefanKarpinski
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I keep finding the term "pairwise summation" isn't sufficient to conjure up what this algorithm does in my mind. How about calling it "recursive summation" or "pairwise recursive summation"? I do realize that "pairwise summation" is the standard term.

@johnmyleswhite
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The term is a little obscure, but we should probably say "recursive pairwise summation" so that the 2-gram is preserved when people in the know go searching for it.

@StefanKarpinski
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 for "recursive pairwise summation"

@ViralBShah
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pairwise summation, although sounds generic, does seem to be how it is referred to:

http://en.wikipedia.org/wiki/Pairwise_summation

Please sign in to comment.