2012-04-10 03:54:38 +00:00
|
|
|
#ifndef SPROUT_NUMERIC_FFT_FIT_BITREV_TABLE_HPP
|
|
|
|
#define SPROUT_NUMERIC_FFT_FIT_BITREV_TABLE_HPP
|
2012-02-25 02:51:23 +00:00
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2012-04-10 03:54:38 +00:00
|
|
|
#include <sprout/numeric/fft/fixed/bitrev_table.hpp>
|
2012-02-25 02:51:23 +00:00
|
|
|
#include <sprout/algorithm/fit/result_of.hpp>
|
|
|
|
#include <sprout/sub_array.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fit {
|
|
|
|
namespace detail {
|
|
|
|
template<typename Container>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Container>::type
|
|
|
|
bitrev_table_impl(Container const& cont, typename sprout::container_traits<Container>::difference_type offset) {
|
2012-02-25 02:51:23 +00:00
|
|
|
return sprout::sub_copy(
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::get_internal(sprout::fixed::bitrev_table(cont)),
|
2012-02-25 02:51:23 +00:00
|
|
|
offset,
|
|
|
|
offset + sprout::size(cont)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// bitrev_table
|
|
|
|
//
|
|
|
|
template<typename Container>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Container>::type
|
|
|
|
bitrev_table(Container const& cont) {
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::fit::detail::bitrev_table_impl(cont, sprout::internal_begin_offset(cont));
|
2012-02-25 02:51:23 +00:00
|
|
|
}
|
|
|
|
} // namespace fit
|
|
|
|
} // namespace sprout
|
|
|
|
|
2012-04-10 03:54:38 +00:00
|
|
|
#endif // #ifndef SPROUT_NUMERIC_FFT_FIT_BITREV_TABLE_HPP
|