comparison DEPENDENCIES/generic/include/boost/random/uniform_01.hpp @ 101:c530137014c0

Update Boost headers (1.58.0)
author Chris Cannam
date Mon, 07 Sep 2015 11:12:49 +0100
parents 2665513ce2d3
children
comparison
equal deleted inserted replaced
100:793467b5e61c 101:c530137014c0
5 * accompanying file LICENSE_1_0.txt or copy at 5 * accompanying file LICENSE_1_0.txt or copy at
6 * http://www.boost.org/LICENSE_1_0.txt) 6 * http://www.boost.org/LICENSE_1_0.txt)
7 * 7 *
8 * See http://www.boost.org for most recent version including documentation. 8 * See http://www.boost.org for most recent version including documentation.
9 * 9 *
10 * $Id: uniform_01.hpp 71018 2011-04-05 21:27:52Z steven_watanabe $ 10 * $Id$
11 * 11 *
12 * Revision history 12 * Revision history
13 * 2001-02-18 moved to individual header files 13 * 2001-02-18 moved to individual header files
14 */ 14 */
15 15
126 typedef UniformRandomNumberGenerator base_type; 126 typedef UniformRandomNumberGenerator base_type;
127 typedef RealType result_type; 127 typedef RealType result_type;
128 128
129 BOOST_STATIC_CONSTANT(bool, has_fixed_range = false); 129 BOOST_STATIC_CONSTANT(bool, has_fixed_range = false);
130 130
131 #if !defined(BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS) && !(defined(BOOST_MSVC) && BOOST_MSVC <= 1300) 131 #if !defined(BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS)
132 BOOST_STATIC_ASSERT(!std::numeric_limits<RealType>::is_integer); 132 BOOST_STATIC_ASSERT(!std::numeric_limits<RealType>::is_integer);
133 #endif 133 #endif
134 134
135 explicit backward_compatible_uniform_01(typename traits::rvalue_type rng) 135 explicit backward_compatible_uniform_01(typename traits::rvalue_type rng)
136 : _rng(rng), 136 : _rng(rng),