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>
|
|
|
|
#include <sprout/index_tuple.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2012-02-25 02:51:23 +00:00
|
|
|
#include <sprout/iterator/operation.hpp>
|
|
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
|
|
|
#include <sprout/integer/bit_reverse.hpp>
|
|
|
|
#include <sprout/integer/bit_length.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace detail {
|
2012-02-28 01:46:39 +00:00
|
|
|
template<typename Container, sprout::index_t... Indexes>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type bitrev_table_impl(
|
2012-02-25 02:51:23 +00:00
|
|
|
Container const& cont,
|
|
|
|
sprout::index_tuple<Indexes...>,
|
|
|
|
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-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type bitrev_table(
|
2012-02-25 02:51:23 +00:00
|
|
|
Container const& cont
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::bitrev_table_impl(
|
|
|
|
cont,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::index_range<0, sprout::container_traits<Container>::static_size>::type(),
|
2012-02-25 02:51:23 +00:00
|
|
|
sprout::empty(cont)
|
|
|
|
? 0
|
|
|
|
: 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
|