Google OR-Tools: ortools/base/accurate_sum.h Source File
Go to the documentation of this file.
14#ifndef ORTOOLS_BASE_ACCURATE_SUM_H_
15#define ORTOOLS_BASE_ACCURATE_SUM_H_
22template <typename FpNumber>
29 void Add(const FpNumber& value) {
31 const FpNumber new_sum = sum_ + error_sum_;
void Add(const FpNumber &value)
Definition accurate_sum.h:29
FpNumber Value() const
Definition accurate_sum.h:37
AccurateSum()
Definition accurate_sum.h:26