8 #ifndef DISTRIBUTION_ACCUMULATOR_H_
9 #define DISTRIBUTION_ACCUMULATOR_H_
33 virtual void addTerm(std::size_t loc,
const T & term) = 0;
52 virtual void addTerm(std::size_t loc,
const std::vector<T> & term) = 0;
56 virtual void addTerm(std::size_t loc, std::size_t i,
const T & term) = 0;
virtual void addTerm(std::size_t loc, std::size_t i, const T &term)=0
Increment the ith sum with the contribution term of location loc held on the current PE.
virtual void addTerm(std::size_t loc, const std::vector< T > &term)=0
Increment each sum with the contribution of location loc (held on the current PE) taken from the corr...
virtual std::vector< T > computeResult() const =0
Return the sums of contributions associated with locations held on all PEs (each taken into account o...
Calculates the sum of a location-dependent quantity of type T over locations held on all PEs,...
virtual T computeResult() const =0
Return the sum of contributions associated with locations held on all PEs (each taken into account on...
virtual void addTerm(std::size_t loc, const T &term)=0
Increment the sum with the contribution term of location loc held on the current PE.