diff --git a/boost/random/uniform_real_distribution.hpp b/boost/random/uniform_real_distribution.hpp
index 437ee69..d8f8825 100644
|
a
|
b
|
public:
|
| 95 | 95 | /** |
| 96 | 96 | * Constructs the parameters of a uniform_real_distribution. |
| 97 | 97 | * |
| 98 | | * Requires min <= max |
| | 98 | * Requires min < max |
| 99 | 99 | */ |
| 100 | 100 | explicit param_type(RealType min_arg = RealType(0.0), |
| 101 | 101 | RealType max_arg = RealType(1.0)) |
| … |
… |
public:
|
| 148 | 148 | * Constructs a uniform_real_distribution. @c min and @c max are |
| 149 | 149 | * the parameters of the distribution. |
| 150 | 150 | * |
| 151 | | * Requires: min <= max |
| | 151 | * Requires: min < max |
| 152 | 152 | */ |
| 153 | 153 | explicit uniform_real_distribution( |
| 154 | 154 | RealType min_arg = RealType(0.0), |