mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
16 lines
436 B
C++
16 lines
436 B
C++
#ifndef TESTSPR_SPROUT_RANDOM_TAUS88_HPP
|
|
#define TESTSPR_SPROUT_RANDOM_TAUS88_HPP
|
|
|
|
#include <sprout/random/taus88.hpp>
|
|
#include <testspr/sprout/random/engine_generic.hpp>
|
|
#include <testspr/tools.hpp>
|
|
|
|
namespace testspr {
|
|
void random_taus88_test() {
|
|
using namespace sprout;
|
|
|
|
testspr::random_engine_test_generic<sprout::random::taus88>();
|
|
}
|
|
} // namespace testspr
|
|
|
|
#endif // #ifndef TESTSPR_SPROUT_RANDOM_TAUS88_HPP
|