2013-11-04 18:50:48 +09:00
|
|
|
/*=============================================================================
|
2018-12-30 17:25:21 +09:00
|
|
|
Copyright (c) 2011-2018 Bolero MURAKAMI
|
2013-11-04 18:50:48 +09:00
|
|
|
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)
|
|
|
|
=============================================================================*/
|
|
|
|
#ifndef SPROUT_NUMERIC_CXX14_HPP
|
|
|
|
#define SPROUT_NUMERIC_CXX14_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2014-04-05 18:31:09 +09:00
|
|
|
#include <sprout/numeric/cxx14/partial_sum.hpp>
|
2017-10-10 02:13:04 +09:00
|
|
|
#include <sprout/numeric/cxx14/exclusive_scan.hpp>
|
|
|
|
#include <sprout/numeric/cxx14/inclusive_scan.hpp>
|
2017-10-11 11:58:29 +09:00
|
|
|
#include <sprout/numeric/cxx14/transform_exclusive_scan.hpp>
|
|
|
|
#include <sprout/numeric/cxx14/transform_inclusive_scan.hpp>
|
2014-04-05 18:31:09 +09:00
|
|
|
#include <sprout/numeric/cxx14/adjacent_difference.hpp>
|
|
|
|
#include <sprout/numeric/cxx14/iota.hpp>
|
2013-11-04 18:50:48 +09:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_NUMERIC_CXX14_HPP
|