generate_canonical.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //===----------------------------------------------------------------------===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. #ifndef _LIBCPP___RANDOM_GENERATE_CANONICAL_H
  9. #define _LIBCPP___RANDOM_GENERATE_CANONICAL_H
  10. #include <__config>
  11. #include <__random/log2.h>
  12. #include <cstdint>
  13. #include <initializer_list>
  14. #include <limits>
  15. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  16. # pragma GCC system_header
  17. #endif
  18. _LIBCPP_PUSH_MACROS
  19. #include <__undef_macros>
  20. _LIBCPP_BEGIN_NAMESPACE_STD
  21. // generate_canonical
  22. template<class _RealType, size_t __bits, class _URNG>
  23. _LIBCPP_HIDE_FROM_ABI _RealType
  24. generate_canonical(_URNG& __g)
  25. {
  26. const size_t __dt = numeric_limits<_RealType>::digits;
  27. const size_t __b = __dt < __bits ? __dt : __bits;
  28. #ifdef _LIBCPP_CXX03_LANG
  29. const size_t __log_r = __log2<uint64_t, _URNG::_Max - _URNG::_Min + uint64_t(1)>::value;
  30. #else
  31. const size_t __log_r = __log2<uint64_t, _URNG::max() - _URNG::min() + uint64_t(1)>::value;
  32. #endif
  33. const size_t __k = __b / __log_r + (__b % __log_r != 0) + (__b == 0);
  34. const _RealType __rp = static_cast<_RealType>(_URNG::max() - _URNG::min()) + _RealType(1);
  35. _RealType __base = __rp;
  36. _RealType __sp = __g() - _URNG::min();
  37. for (size_t __i = 1; __i < __k; ++__i, __base *= __rp)
  38. __sp += (__g() - _URNG::min()) * __base;
  39. return __sp / __base;
  40. }
  41. _LIBCPP_END_NAMESPACE_STD
  42. _LIBCPP_POP_MACROS
  43. #endif // _LIBCPP___RANDOM_GENERATE_CANONICAL_H