mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
99f1a4f741
string.hpp 修正
18 lines
598 B
C++
18 lines
598 B
C++
#ifndef SPROUT_RANDOM_HPP
|
|
#define SPROUT_RANDOM_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/random/linear_congruential.hpp>
|
|
#include <sprout/random/mersenne_twister.hpp>
|
|
#include <sprout/random/uniform_smallint.hpp>
|
|
#include <sprout/random/uniform_int_distribution.hpp>
|
|
#include <sprout/random/uniform_01.hpp>
|
|
#include <sprout/random/uniform_real_distribution.hpp>
|
|
#include <sprout/random/bernoulli_distribution.hpp>
|
|
#include <sprout/random/variate_generator.hpp>
|
|
#include <sprout/random/random_result.hpp>
|
|
#include <sprout/random/random_iterator.hpp>
|
|
|
|
#endif // #ifndef SPROUT_RANDOM_HPP
|
|
|
|
|