/third_party/boost/boost/random/ |
D | uniform_01.hpp | 47 class uniform_01 class 214 class uniform_01 221 uniform_01() {} 223 explicit uniform_01(typename traits::rvalue_type rng) 231 operator<<(std::basic_ostream<CharT,Traits>& os, const uniform_01& u) 239 operator>>(std::basic_istream<CharT,Traits>& is, uniform_01& u) 251 using random::uniform_01;
|
D | poisson_distribution.hpp | 277 RealType v = uniform_01<RealType>()(urng); in generate() 285 u = uniform_01<RealType>()(urng) - 0.5; in generate() 289 v = uniform_01<RealType>()(urng) * _u._ptrd.v_r; in generate() 325 RealType u = uniform_01<RealType>()(urng); in invert()
|
D | uniform_on_sphere.hpp | 170 if(uniform_01<RealType>()(eng) < 0.5) { in operator ()() 179 uniform_01<RealType> uniform; in operator ()() 196 uniform_01<RealType> uniform; in operator ()()
|
D | gamma_distribution.hpp | 175 result_type y = tan(pi * uniform_01<RealType>()(eng)); in operator ()() 180 if(uniform_01<RealType>()(eng) > in operator ()() 190 result_type u = uniform_01<RealType>()(eng); in operator ()()
|
D | binomial_distribution.hpp | 305 RealType v = uniform_01<RealType>()(urng); in generate() 313 u = uniform_01<RealType>()(urng) - 0.5; in generate() 317 v = uniform_01<RealType>()(urng) * _u.btrd.v_r; in generate() 376 RealType u = uniform_01<RealType>()(urng); in invert()
|
D | extreme_value_distribution.hpp | 99 return _a - log(-log(uniform_01<RealType>()(urng))) * _b; in operator ()()
|
D | weibull_distribution.hpp | 100 return _b*pow(-log(1 - uniform_01<RealType>()(urng)), 1/_a); in operator ()()
|
D | laplace_distribution.hpp | 95 if(uniform_01<RealType>()(urng) < 0.5) in operator ()()
|
D | cauchy_distribution.hpp | 158 RealType val = uniform_01<RealType>()(eng)-result_type(0.5); in operator ()()
|
D | geometric_distribution.hpp | 158 RealType x = RealType(1) - boost::uniform_01<RealType>()(eng); in operator ()()
|
D | exponential_distribution.hpp | 198 RealType y01 = uniform_01<RealType>()(eng); in operator ()()
|
/third_party/boost/boost/graph/ |
D | rmat_graph_generator.hpp | 29 using boost::uniform_01; 87 shared_ptr< uniform_01< RandomGenerator > > prob, T n, unsigned int SCALE, in generate_edge() 174 this->gen.reset(new uniform_01< RandomGenerator >(gen)); in rmat_iterator() 236 shared_ptr< uniform_01< RandomGenerator > > gen; 295 this->gen.reset(new uniform_01< RandomGenerator >(gen)); in sorted_rmat_iterator() 362 shared_ptr< uniform_01< RandomGenerator > > gen; 403 this->gen.reset(new uniform_01< RandomGenerator >(gen)); in unique_rmat_iterator() 487 shared_ptr< uniform_01< RandomGenerator > > gen; 532 this->gen.reset(new uniform_01< RandomGenerator >(gen)); in sorted_unique_rmat_iterator() 648 shared_ptr< uniform_01< RandomGenerator > > gen;
|
D | erdos_renyi_generator.hpp | 145 this->gen.reset(new uniform_01< RandomGenerator* >(&gen)); in sorted_erdos_renyi_iterator() 210 shared_ptr< uniform_01< RandomGenerator* > > gen;
|
D | topology.hpp | 226 typedef uniform_01< RandomNumberGenerator, double > rand_t; 326 typedef uniform_01< RandomNumberGenerator, double > rand_t; 435 typedef uniform_01< RandomNumberGenerator, double > rand_t; 614 typedef uniform_01< RandomNumberGenerator, double > rand_t;
|
D | small_world_generator.hpp | 63 uniform_01< RandomGenerator, double > rand01(*gen); in operator ++()
|
D | ssca_graph_generator.hpp | 80 uniform_01< RandomGenerator > prob(*gen); in operator ++()
|
/third_party/boost/boost/graph/distributed/ |
D | rmat_graph_generator.hpp | 58 this->gen.reset(new uniform_01<RandomGenerator>(gen)); in scalable_rmat_iterator() 65 boost::uniform_01<RandomGenerator> prob(gen); in scalable_rmat_iterator() 154 shared_ptr<uniform_01<RandomGenerator> > gen;
|
/third_party/boost/libs/random/doc/ |
D | Jamfile.v2 | 62 uniform_01 122 …uniform_01=\"@xmlonly<classname alt=\\\"boost::random::uniform_01\\\">uniform_01</classname>@endxm…
|
D | distribution_performance_linux.qbk | 11 [[uniform_01][21.692][72.4638][17.1233][116.279]]
|
D | distribution_performance_windows.qbk | 11 [[uniform_01][36.63][95.6938][26.3783][85.4701]]
|
/third_party/boost/libs/random/test/ |
D | test_binomial.cpp | 27 #define BOOST_RANDOM_ARG2_DISTRIBUTION(n) boost::uniform_01<>()
|
D | test_negative_binomial.cpp | 27 #define BOOST_RANDOM_ARG2_DISTRIBUTION(n) boost::uniform_01<>()
|
D | test_bernoulli.cpp | 50 boost::uniform_01<> rdist; in do_tests()
|
/third_party/boost/libs/random/example/ |
D | intersections.cpp | 48 boost::random::uniform_01<double> dist; in main()
|
/third_party/boost/libs/graph/test/ |
D | gursoy_atun_layout_test.cpp | 70 boost::uniform_01< boost::minstd_rand > random_edge_weight(edge_weight_gen); in main()
|