2013-08-08 18:54:33 +09:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2011-10-21 20:36:19 +09:00
|
|
|
#ifndef SPROUT_RANGE_NUMERIC_FIT_PARTIAL_SUM_HPP
|
|
|
|
#define SPROUT_RANGE_NUMERIC_FIT_PARTIAL_SUM_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-03-31 16:24:13 +09:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2013-11-20 22:04:11 +09:00
|
|
|
#include <sprout/algorithm/fit/results.hpp>
|
2011-10-21 20:36:19 +09:00
|
|
|
#include <sprout/numeric/fit/partial_sum.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace range {
|
|
|
|
namespace fit {
|
|
|
|
//
|
|
|
|
// partial_sum
|
|
|
|
//
|
2013-02-04 01:10:26 +09:00
|
|
|
template<typename InputRange, typename Result>
|
2013-11-20 22:04:11 +09:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm<Result>::type
|
2013-02-04 01:10:26 +09:00
|
|
|
partial_sum(InputRange const& rng, Result const& result) {
|
|
|
|
return sprout::fit::partial_sum(sprout::begin(rng), sprout::end(rng), result);
|
2011-10-21 20:36:19 +09:00
|
|
|
}
|
2013-02-04 01:10:26 +09:00
|
|
|
template<typename InputRange, typename Result, typename BinaryOperation>
|
2013-11-20 22:04:11 +09:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm<Result>::type
|
2013-02-04 01:10:26 +09:00
|
|
|
partial_sum(InputRange const& rng, Result const& result, BinaryOperation binary_op) {
|
|
|
|
return sprout::fit::partial_sum(sprout::begin(rng), sprout::end(rng), result, binary_op);
|
2011-10-21 20:36:19 +09:00
|
|
|
}
|
2013-02-01 20:21:01 +09:00
|
|
|
|
2013-02-04 01:10:26 +09:00
|
|
|
template<typename Result, typename InputRange>
|
2013-11-20 22:04:11 +09:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm<Result>::type
|
2013-02-04 01:10:26 +09:00
|
|
|
partial_sum(InputRange const& rng) {
|
|
|
|
return sprout::fit::partial_sum<Result>(sprout::begin(rng), sprout::end(rng));
|
2013-02-01 20:21:01 +09:00
|
|
|
}
|
2013-02-04 01:10:26 +09:00
|
|
|
template<typename Result, typename InputRange, typename BinaryOperation>
|
2013-11-20 22:04:11 +09:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm<Result>::type
|
2013-02-04 01:10:26 +09:00
|
|
|
partial_sum(InputRange const& rng, BinaryOperation binary_op) {
|
|
|
|
return sprout::fit::partial_sum<Result>(sprout::begin(rng), sprout::end(rng), binary_op);
|
2013-02-01 20:21:01 +09:00
|
|
|
}
|
2011-10-21 20:36:19 +09:00
|
|
|
} // namespace fit
|
|
|
|
} // namespace range
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_NUMERIC_FIT_PARTIAL_SUM_HPP
|