summaryrefslogtreecommitdiff
path: root/src/mongo/util/summation.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-57633 SERVER-48079 fix implicit long long to double conversion in ↵Benety Goh2021-08-191-3/+3
| | | | summation.cpp
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-14/+16
|
* SERVER-19735: Add accurate summation class using pairs of doublesGeert Bosch2016-06-061-0/+89
This allows summing long series of 64-bits integers without loss of precision, and avoids catastrophic cancellation in summing series of doubles or mixed types.