2013-08-08 09:54:33 +00: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-10 03:54:38 +00:00
|
|
|
#ifndef SPROUT_NUMERIC_FFT_FIXED_BITREV_TABLE_HPP
|
|
|
|
#define SPROUT_NUMERIC_FFT_FIXED_BITREV_TABLE_HPP
|
2012-02-25 02:51:23 +00:00
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2013-04-06 04:06:51 +00:00
|
|
|
#include <sprout/index_tuple/metafunction.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2013-03-31 06:14:10 +00:00
|
|
|
#include <sprout/container/indexes.hpp>
|
2012-02-25 02:51:23 +00:00
|
|
|
#include <sprout/iterator/operation.hpp>
|
|
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
2012-08-08 15:03:30 +00:00
|
|
|
#include <sprout/bit/reverse.hpp>
|
|
|
|
#include <sprout/bit/length.hpp>
|
2012-02-25 02:51:23 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
2012-05-21 16:06:13 +00:00
|
|
|
namespace fixed {
|
|
|
|
namespace detail {
|
2012-02-28 01:46:39 +00:00
|
|
|
template<typename Container, sprout::index_t... Indexes>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type
|
|
|
|
bitrev_table_impl(
|
|
|
|
Container const& cont, sprout::index_tuple<Indexes...>,
|
2012-02-25 02:51:23 +00:00
|
|
|
std::size_t bit_length,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Container>::difference_type offset,
|
|
|
|
typename sprout::container_traits<Container>::size_type size
|
2012-02-25 02:51:23 +00:00
|
|
|
)
|
|
|
|
{
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::remake<Container>(
|
2012-02-25 02:51:23 +00:00
|
|
|
cont,
|
|
|
|
sprout::size(cont),
|
|
|
|
(Indexes >= offset && Indexes < offset + size
|
|
|
|
? sprout::bit_reverse_in(
|
2012-03-31 07:24:13 +00:00
|
|
|
static_cast<typename sprout::container_traits<Container>::value_type>(Indexes - offset),
|
2012-02-25 02:51:23 +00:00
|
|
|
bit_length
|
|
|
|
)
|
2012-03-31 07:24:13 +00:00
|
|
|
: *sprout::next(sprout::internal_begin(cont), Indexes)
|
2012-02-25 02:51:23 +00:00
|
|
|
)...
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// bitrev_table
|
|
|
|
//
|
|
|
|
template<typename Container>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type
|
|
|
|
bitrev_table(Container const& cont) {
|
2012-02-25 02:51:23 +00:00
|
|
|
return sprout::fixed::detail::bitrev_table_impl(
|
|
|
|
cont,
|
2013-03-31 06:14:10 +00:00
|
|
|
sprout::container_indexes<Container>::make(),
|
2012-10-06 04:53:07 +00:00
|
|
|
sprout::empty(cont) ? 0
|
2012-02-25 02:51:23 +00:00
|
|
|
: sprout::bit_length(sprout::size(cont) - 1)
|
|
|
|
,
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::internal_begin_offset(cont),
|
2012-02-25 02:51:23 +00:00
|
|
|
sprout::size(cont)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace fixed
|
|
|
|
|
|
|
|
using sprout::fixed::bitrev_table;
|
|
|
|
} // namespace sprout
|
|
|
|
|
2012-04-10 03:54:38 +00:00
|
|
|
#endif // #ifndef SPROUT_NUMERIC_FFT_FIXED_BITREV_TABLE_HPP
|