/*============================================================================= 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) =============================================================================*/ #ifndef SPROUT_LIBS_ALGORITHM_TEST_RECURRENCE_N_CPP #define SPROUT_LIBS_ALGORITHM_TEST_RECURRENCE_N_CPP #include #include #include #include #include namespace testspr { static void algorithm_recurrence_n_test() { using namespace sprout; { SPROUT_STATIC_CONSTEXPR auto arr1 = array{{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}; // 生成 { SPROUT_STATIC_CONSTEXPR auto recurrenced = sprout::recurrence_n( arr1, 4, testspr::x2(), 1 ); TESTSPR_BOTH_ASSERT(testspr::equal( recurrenced, array{{1, 2, 4, 8, 5, 6, 7, 8, 9, 10}} )); } { SPROUT_STATIC_CONSTEXPR auto recurrenced = sprout::fit::recurrence_n( arr1, 4, testspr::x2(), 1 ); TESTSPR_BOTH_ASSERT(testspr::equal( recurrenced, array{{1, 2, 4, 8}} )); } // 生成 // 範囲の切り出し { SPROUT_STATIC_CONSTEXPR auto recurrenced = sprout::recurrence_n( sprout::sub(arr1, 2, 8), 4, testspr::x2(), 1 ); TESTSPR_BOTH_ASSERT(testspr::equal( recurrenced, array{{1, 2, 4, 8, 7, 8}} )); TESTSPR_BOTH_ASSERT(testspr::equal( sprout::get_internal(recurrenced), array{{1, 2, 1, 2, 4, 8, 7, 8, 9, 10}} )); } { SPROUT_STATIC_CONSTEXPR auto recurrenced = sprout::fit::recurrence_n( sprout::sub(arr1, 2, 8), 4, testspr::x2(), 1 ); TESTSPR_BOTH_ASSERT(testspr::equal( recurrenced, array{{1, 2, 4, 8}} )); TESTSPR_BOTH_ASSERT(testspr::equal( sprout::get_internal(recurrenced), array{{1, 2, 1, 2, 4, 8, 7, 8, 9, 10}} )); } } } } // namespace testspr #ifndef TESTSPR_CPP_INCLUDE # define TESTSPR_TEST_FUNCTION testspr::algorithm_recurrence_n_test # include #endif #endif // #ifndef SPROUT_LIBS_ALGORITHM_TEST_RECURRENCE_N_CPP