Sprout/sprout/numeric/fft/fit/bitrev_table.hpp

45 lines
1.7 KiB
C++
Raw Normal View History

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_FIT_BITREV_TABLE_HPP
#define SPROUT_NUMERIC_FFT_FIT_BITREV_TABLE_HPP
#include <type_traits>
#include <sprout/config.hpp>
#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>
#include <sprout/algorithm/fit/result_of.hpp>
2013-08-08 09:54:33 +00:00
#include <sprout/sub_array/sub_array.hpp>
2013-02-07 14:12:57 +00:00
#include <sprout/sub_array/sub.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) {
return sprout::sub_copy(
sprout::get_internal(sprout::fixed::bitrev_table(cont)),
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) {
return sprout::fit::detail::bitrev_table_impl(cont, sprout::internal_begin_offset(cont));
}
} // namespace fit
} // namespace sprout
2012-04-10 03:54:38 +00:00
#endif // #ifndef SPROUT_NUMERIC_FFT_FIT_BITREV_TABLE_HPP