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)
|
|
|
|
=============================================================================*/
|
2012-04-04 17:48:02 +09:00
|
|
|
#ifndef SPROUT_RANGE_NUMERIC_INNER_PRODUCT_HPP
|
|
|
|
#define SPROUT_RANGE_NUMERIC_INNER_PRODUCT_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/numeric/inner_product.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
2012-10-06 13:53:07 +09:00
|
|
|
namespace range {
|
|
|
|
// 26.7.3 Inner product
|
2013-08-07 22:13:03 +09:00
|
|
|
template<typename InputRange1, typename InputRange2, typename T, typename BinaryOperation1, typename BinaryOperation2>
|
2012-10-06 13:53:07 +09:00
|
|
|
inline SPROUT_CONSTEXPR T
|
|
|
|
inner_product(
|
2013-08-07 22:13:03 +09:00
|
|
|
InputRange1 const& range1, InputRange2 const& range2, T init,
|
2012-10-06 13:53:07 +09:00
|
|
|
BinaryOperation1 binary_op1, BinaryOperation2 binary_op2
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::inner_product(sprout::begin(range1), sprout::end(range1), sprout::begin(range2), init, binary_op1, binary_op2);
|
|
|
|
}
|
2012-04-04 17:48:02 +09:00
|
|
|
|
2013-08-07 22:13:03 +09:00
|
|
|
template<typename InputRange1, typename InputRange2, typename T>
|
2012-10-06 13:53:07 +09:00
|
|
|
inline SPROUT_CONSTEXPR T
|
2013-08-07 22:13:03 +09:00
|
|
|
inner_product(InputRange1 const& range1, InputRange2 const& range2, T init) {
|
2012-10-06 13:53:07 +09:00
|
|
|
return sprout::inner_product(sprout::begin(range1), sprout::end(range1), sprout::begin(range2), init);
|
|
|
|
}
|
|
|
|
} // namespace range
|
2012-04-04 17:48:02 +09:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_NUMERIC_INNER_PRODUCT_HPP
|