mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
fix recursion depth: min_element, max_element, minmax_element
This commit is contained in:
parent
86f68671a1
commit
1c085cb707
10 changed files with 539 additions and 17 deletions
53
libs/algorithm/test/min.cpp
Normal file
53
libs/algorithm/test/min.cpp
Normal file
|
@ -0,0 +1,53 @@
|
|||
#ifndef SPROUT_LIBS_ALGORITHM_TEST_MIN_CPP
|
||||
#define SPROUT_LIBS_ALGORITHM_TEST_MIN_CPP
|
||||
|
||||
#include <sprout/algorithm/min.hpp>
|
||||
#include <sprout/array.hpp>
|
||||
#include <testspr/tools.hpp>
|
||||
|
||||
namespace testspr {
|
||||
static void algorithm_min_test() {
|
||||
using namespace sprout;
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto arr1 = array<int, 2>{{-1, 1}};
|
||||
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::min(
|
||||
arr1[0],
|
||||
arr1[1]
|
||||
);
|
||||
TESTSPR_BOTH_ASSERT(result == arr1[0]);
|
||||
}
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::min(
|
||||
arr1[1],
|
||||
arr1[0]
|
||||
);
|
||||
TESTSPR_BOTH_ASSERT(result == arr1[0]);
|
||||
}
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::min(
|
||||
arr1[0],
|
||||
arr1[1],
|
||||
testspr::less<int>()
|
||||
);
|
||||
TESTSPR_BOTH_ASSERT(result == arr1[0]);
|
||||
}
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::min(
|
||||
arr1[1],
|
||||
arr1[0],
|
||||
testspr::less<int>()
|
||||
);
|
||||
TESTSPR_BOTH_ASSERT(result == arr1[0]);
|
||||
}
|
||||
}
|
||||
}
|
||||
} // namespace testspr
|
||||
|
||||
#ifndef TESTSPR_CPP_INCLUDE
|
||||
# define TESTSPR_TEST_FUNCTION testspr::algorithm_min_test
|
||||
# include <testspr/include_main.hpp>
|
||||
#endif
|
||||
|
||||
#endif // #ifndef SPROUT_LIBS_ALGORITHM_TEST_MIN_CPP
|
Loading…
Add table
Add a link
Reference in a new issue