Ticket #1552: boost.accumulators.diff

File boost.accumulators.diff, 2.2 KB (added by anonymous, 15 years ago)
  • accumulators/statistics/tail_quantile.hpp

     
    1313#include <functional>
    1414#include <sstream>
    1515#include <stdexcept>
     16#include <cmath>                // For ceil
    1617#include <boost/throw_exception.hpp>
    1718#include <boost/parameter/keyword.hpp>
    1819#include <boost/mpl/placeholders.hpp>
  • accumulators/statistics/weighted_mean.hpp

     
    148148namespace extract
    149149{
    150150    extractor<tag::mean> const weighted_mean = {};
    151     BOOST_ACCUMULATORS_DEFINE_EXTRACTOR(tag, weighted_mean_of_variates, (typename)(typename));
     151    BOOST_ACCUMULATORS_DEFINE_EXTRACTOR(tag, weighted_mean_of_variates, (typename)(typename))
    152152}
    153153
    154154using extract::weighted_mean;
  • accumulators/statistics/peaks_over_threshold.hpp

     
    1212#include <limits>
    1313#include <numeric>
    1414#include <functional>
     15#include <cmath> // pow
     16#include <sstream> // stringstream
     17#include <stdexcept> // runtime_error
     18#include <boost/throw_exception.hpp>
    1519#include <boost/range.hpp>
    1620#include <boost/mpl/if.hpp>
    1721#include <boost/mpl/int.hpp>
  • accumulators/framework/accumulators/droppable_accumulator.hpp

     
    1313#include <boost/mpl/apply.hpp>
    1414#include <boost/aligned_storage.hpp>
    1515#include <boost/accumulators/framework/depends_on.hpp> // for feature_of
     16#include <boost/accumulators/framework/parameters/accumulator.hpp> // for accumulator
    1617
    1718namespace boost { namespace accumulators
    1819{