mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
add sprout/random/default_random_engine.hpp
fix sprout/functional/bit_not.hpp
This commit is contained in:
parent
37775f9280
commit
2b8a8662af
9 changed files with 39 additions and 18 deletions
18
sprout/random/default_random_engine.hpp
Normal file
18
sprout/random/default_random_engine.hpp
Normal file
|
@ -0,0 +1,18 @@
|
|||
#ifndef SPROUT_RANDOM_DEFAULT_RANDOM_ENGINE_HPP
|
||||
#define SPROUT_RANDOM_DEFAULT_RANDOM_ENGINE_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/random/linear_congruential.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace random {
|
||||
//
|
||||
// default_random_engine
|
||||
//
|
||||
typedef sprout::random::minstd_rand0 default_random_engine;
|
||||
} // namespace random
|
||||
|
||||
using sprout::random::default_random_engine;
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANDOM_DEFAULT_RANDOM_ENGINE_HPP
|
Loading…
Add table
Add a link
Reference in a new issue