#ifndef SPROUT_LIBS_ALGORITHM_TEST_STABLE_PARTITION_CPP #define SPROUT_LIBS_ALGORITHM_TEST_STABLE_PARTITION_CPP #include #include #include #include #include namespace testspr { static void algorithm_stable_partition_test() { using namespace sprout; { SPROUT_STATIC_CONSTEXPR auto arr1 = array{{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}}; // パーティション (is_odd) { SPROUT_STATIC_CONSTEXPR auto partitioned = sprout::stable_partition( arr1, testspr::is_odd() ); TESTSPR_BOTH_ASSERT(testspr::equal( partitioned, array{{1, 3, 5, 7, 9, 2, 4, 6, 8, 10}} )); } { SPROUT_STATIC_CONSTEXPR auto partitioned = sprout::fit::stable_partition( arr1, testspr::is_odd() ); TESTSPR_BOTH_ASSERT(testspr::equal( partitioned, array{{1, 3, 5, 7, 9}} )); } // パーティション (is_odd) // 範囲の切り出し { SPROUT_STATIC_CONSTEXPR auto partitioned = sprout::stable_partition( sprout::sub(arr1, 2, 8), testspr::is_odd() ); TESTSPR_BOTH_ASSERT(testspr::equal( partitioned, array{{3, 5, 7, 4, 6, 8}} )); TESTSPR_BOTH_ASSERT(testspr::equal( sprout::get_internal(partitioned), array{{1, 2, 3, 5, 7, 4, 6, 8, 9, 10}} )); } { SPROUT_STATIC_CONSTEXPR auto partitioned = sprout::fit::stable_partition( sprout::sub(arr1, 2, 8), testspr::is_odd() ); TESTSPR_BOTH_ASSERT(testspr::equal( partitioned, array{{3, 5, 7}} )); TESTSPR_BOTH_ASSERT(testspr::equal( sprout::get_internal(partitioned), array{{1, 2, 3, 5, 7, 4, 6, 8, 9, 10}} )); } } } } // namespace testspr #ifndef TESTSPR_CPP_INCLUDE # define TESTSPR_TEST_FUNCTION testspr::algorithm_stable_partition_test # include #endif #endif // #ifndef SPROUT_LIBS_ALGORITHM_TEST_STABLE_PARTITION_CPP