mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
16 lines
547 B
C++
16 lines
547 B
C++
#ifndef TESTSPR_SPROUT_RANDOM_GEOMETRIC_DISTRIBUTION_HPP
|
|
#define TESTSPR_SPROUT_RANDOM_GEOMETRIC_DISTRIBUTION_HPP
|
|
|
|
#include <sprout/random/geometric_distribution.hpp>
|
|
#include <testspr/sprout/random/distribution_generic.hpp>
|
|
#include <testspr/tools.hpp>
|
|
|
|
namespace testspr {
|
|
void random_geometric_distribution_test() {
|
|
using namespace sprout;
|
|
|
|
testspr::random_distribution_test_generic<sprout::random::geometric_distribution<> >();
|
|
}
|
|
} // namespace testspr
|
|
|
|
#endif // #ifndef TESTSPR_SPROUT_RANDOM_GEOMETRIC_DISTRIBUTION_HPP
|