mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
move textspr/sprout/* -> libs/<libname>/test/*
fix binomial_distribution
This commit is contained in:
parent
237ec76266
commit
0ceabb5b9b
107 changed files with 1228 additions and 840 deletions
21
libs/random/test/uniform_real_distribution.cpp
Normal file
21
libs/random/test/uniform_real_distribution.cpp
Normal file
|
@ -0,0 +1,21 @@
|
|||
#ifndef SPROUT_LIBS_RANDOM_TEST_UNIFORM_REAL_DISTRIBUTION_CPP
|
||||
#define SPROUT_LIBS_RANDOM_TEST_UNIFORM_REAL_DISTRIBUTION_CPP
|
||||
|
||||
#include <sprout/random/uniform_real_distribution.hpp>
|
||||
#include "./distribution_generic.hpp"
|
||||
#include <testspr/tools.hpp>
|
||||
|
||||
namespace testspr {
|
||||
void random_uniform_real_distribution_test() {
|
||||
using namespace sprout;
|
||||
|
||||
testspr::random_distribution_test_generic<sprout::random::uniform_real_distribution<> >();
|
||||
}
|
||||
} // namespace testspr
|
||||
|
||||
#ifndef TESTSPR_CPP_INCLUDE
|
||||
# define TESTSPR_TEST_FUNCTION testspr::random_uniform_real_distribution_test
|
||||
# include <testspr/include_main.hpp>
|
||||
#endif
|
||||
|
||||
#endif // #ifndef SPROUT_LIBS_RANDOM_TEST_UNIFORM_REAL_DISTRIBUTION_CPP
|
Loading…
Add table
Add a link
Reference in a new issue