mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
22 lines
660 B
C++
22 lines
660 B
C++
|
#ifndef SPROUT_LIBS_RANDOM_TEST_INVERSIVE_CONGRUENTIAL_CPP
|
||
|
#define SPROUT_LIBS_RANDOM_TEST_INVERSIVE_CONGRUENTIAL_CPP
|
||
|
|
||
|
#include <sprout/random/linear_congruential.hpp>
|
||
|
#include "./engine_generic.hpp"
|
||
|
#include <testspr/tools.hpp>
|
||
|
|
||
|
namespace testspr {
|
||
|
void random_inversive_congruential_test() {
|
||
|
using namespace sprout;
|
||
|
|
||
|
testspr::random_engine_test_generic<sprout::random::hellekalek1995>();
|
||
|
}
|
||
|
} // namespace testspr
|
||
|
|
||
|
#ifndef TESTSPR_CPP_INCLUDE
|
||
|
# define TESTSPR_TEST_FUNCTION testspr::random_inversive_congruential_test
|
||
|
# include <testspr/include_main.hpp>
|
||
|
#endif
|
||
|
|
||
|
#endif // #ifndef SPROUT_LIBS_RANDOM_TEST_INVERSIVE_CONGRUENTIAL_CPP
|