13#ifndef ARCANE_RANDOM_UNIFORM01_H
14#define ARCANE_RANDOM_UNIFORM01_H
18#include "arcane/utils/FatalErrorException.h"
20#include "arcane/random/RandomGlobal.h"
64template<
class UniformRandomNumberGenerator>
68 typedef UniformRandomNumberGenerator base_type;
69 typedef Real result_type;
70 static const bool has_fixed_range =
false;
72 explicit Uniform01(base_type & rng)
95 Real rng_val = _apply(_rng,_rng());
96 for(
int x=0;x<100;++x){
99 rng_val = _apply(_rng,_rng());
112 static ARCANE_DEPRECATED_122
Real apply(
const base_type& _rng,
typename base_type::result_type rng_val)
114 Real r = _apply(_rng,rng_val);
118 return (1.0-1.0e-10);
127 static Real _apply(
const base_type& _rng,
typename base_type::result_type rng_val)
129 return static_cast<Real>(rng_val - _rng.min()) /
130 (
static_cast<Real>(_rng.max()-_rng.min()) +
131 (std::numeric_limits<base_result>::is_integer ? 1.0 : 0.0));
136 typedef typename base_type::result_type base_result;
double Real
Type représentant un réel.