Path: blob/main/contrib/llvm-project/libcxx/include/__random/generate_canonical.h
35233 views
//===----------------------------------------------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef _LIBCPP___RANDOM_GENERATE_CANONICAL_H9#define _LIBCPP___RANDOM_GENERATE_CANONICAL_H1011#include <__config>12#include <__random/log2.h>13#include <cstdint>14#include <initializer_list>15#include <limits>1617#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)18# pragma GCC system_header19#endif2021_LIBCPP_PUSH_MACROS22#include <__undef_macros>2324_LIBCPP_BEGIN_NAMESPACE_STD2526// generate_canonical2728template <class _RealType, size_t __bits, class _URNG>29_LIBCPP_HIDE_FROM_ABI _RealType generate_canonical(_URNG& __g) {30const size_t __dt = numeric_limits<_RealType>::digits;31const size_t __b = __dt < __bits ? __dt : __bits;32#ifdef _LIBCPP_CXX03_LANG33const size_t __log_r = __log2<uint64_t, _URNG::_Max - _URNG::_Min + uint64_t(1)>::value;34#else35const size_t __log_r = __log2<uint64_t, _URNG::max() - _URNG::min() + uint64_t(1)>::value;36#endif37const size_t __k = __b / __log_r + (__b % __log_r != 0) + (__b == 0);38const _RealType __rp = static_cast<_RealType>(_URNG::max() - _URNG::min()) + _RealType(1);39_RealType __base = __rp;40_RealType __sp = __g() - _URNG::min();41for (size_t __i = 1; __i < __k; ++__i, __base *= __rp)42__sp += (__g() - _URNG::min()) * __base;43return __sp / __base;44}4546_LIBCPP_END_NAMESPACE_STD4748_LIBCPP_POP_MACROS4950#endif // _LIBCPP___RANDOM_GENERATE_CANONICAL_H515253