|
A library for working with phylogenetic and population genetic data.
v0.32.0
|
|
Go to the documentation of this file. 1 #ifndef GENESIS_UTILS_MATH_COMPENSATED_SUM_H_
2 #define GENESIS_UTILS_MATH_COMPENSATED_SUM_H_
48 template<
typename SummationAlgorithm>
106 template<
typename SummationAlgorithm = NeumaierSum>
133 while( first != last ) {
144 for(
auto const e : list ) {
197 inline operator double()
const
208 inline void add(
double value )
210 add_( algorithm_, value );
225 return sum_ + cor_0_ + cor_1_ + cor_2_;
238 auto const y = value - cor_0_;
239 volatile auto const t = sum_ + y;
240 volatile auto const z = t - sum_;
251 inline void add_( NeumaierSummation,
double value )
254 auto const t = sum_ + value;
255 if( std::abs( sum_ ) >= std::abs( value )) {
257 volatile auto const v = sum_ - t;
261 volatile auto const v = value - t;
267 inline void add_( KleinSummation,
double value )
272 auto t = sum_ + value;
273 if( std::abs( sum_ ) >= std::abs( value )) {
274 volatile auto const v = sum_ - t;
277 volatile auto const v = value - t;
282 if( std::abs( cor_1_ ) >= std::abs( c1 )) {
283 volatile auto const v = cor_1_ - t;
286 volatile auto const v = c1 - t;
290 cor_2_ = cor_2_ + c2;
300 SummationAlgorithm algorithm_{};
313 #endif // include guard
Compensated summation algorithmm, such as Kahan, Neumaier, and Klein summation.
CompensatedSum(std::initializer_list< double > list)
Construct a CompensatedSum, summing over an initializer list of values.
~CompensatedSum()=default
CompensatedSum(It first, It last)
Construct a CompensatedSum, summing over a range of double.
Tag for tag dispatching the algorithm in CompensatedSum. See there for details.
Tag for tag dispatching the algorithm in CompensatedSum. See there for details.
void operator+=(double value)
Add a value to the sum.
Container namespace for all symbols of genesis in order to keep them separate when used as a library.
CompensatedSum(double value)
Constructor that initializes the sum to a given value.
Tag for tag dispatching the algorithm in CompensatedSum. See there for details.
CompensatedSum & operator=(CompensatedSum const &)=default
void operator-=(double value)
Subtract a value from the sum.