add sprout/random/default_random_engine.hpp

fix sprout/functional/bit_not.hpp
This commit is contained in:
bolero-MURAKAMI 2012-06-14 00:41:15 +09:00
parent 37775f9280
commit 2b8a8662af
9 changed files with 39 additions and 18 deletions

View 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