chi_squared_distribution.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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_CHI_SQUARED_DISTRIBUTION_H
  9. #define _LIBCPP___RANDOM_CHI_SQUARED_DISTRIBUTION_H
  10. #include <__config>
  11. #include <__random/gamma_distribution.h>
  12. #include <__random/is_valid.h>
  13. #include <iosfwd>
  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. template <class _RealType = double>
  22. class _LIBCPP_TEMPLATE_VIS chi_squared_distribution {
  23. static_assert(__libcpp_random_is_valid_realtype<_RealType>::value,
  24. "RealType must be a supported floating-point type");
  25. public:
  26. // types
  27. typedef _RealType result_type;
  28. class _LIBCPP_TEMPLATE_VIS param_type {
  29. result_type __n_;
  30. public:
  31. typedef chi_squared_distribution distribution_type;
  32. _LIBCPP_HIDE_FROM_ABI explicit param_type(result_type __n = 1) : __n_(__n) {}
  33. _LIBCPP_HIDE_FROM_ABI result_type n() const { return __n_; }
  34. friend _LIBCPP_HIDE_FROM_ABI bool operator==(const param_type& __x, const param_type& __y) {
  35. return __x.__n_ == __y.__n_;
  36. }
  37. friend _LIBCPP_HIDE_FROM_ABI bool operator!=(const param_type& __x, const param_type& __y) { return !(__x == __y); }
  38. };
  39. private:
  40. param_type __p_;
  41. public:
  42. // constructor and reset functions
  43. #ifndef _LIBCPP_CXX03_LANG
  44. _LIBCPP_HIDE_FROM_ABI chi_squared_distribution() : chi_squared_distribution(1) {}
  45. _LIBCPP_HIDE_FROM_ABI explicit chi_squared_distribution(result_type __n) : __p_(param_type(__n)) {}
  46. #else
  47. _LIBCPP_HIDE_FROM_ABI explicit chi_squared_distribution(result_type __n = 1) : __p_(param_type(__n)) {}
  48. #endif
  49. _LIBCPP_HIDE_FROM_ABI explicit chi_squared_distribution(const param_type& __p) : __p_(__p) {}
  50. _LIBCPP_HIDE_FROM_ABI void reset() {}
  51. // generating functions
  52. template <class _URNG>
  53. _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g) {
  54. return (*this)(__g, __p_);
  55. }
  56. template <class _URNG>
  57. _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p) {
  58. return gamma_distribution<result_type>(__p.n() / 2, 2)(__g);
  59. }
  60. // property functions
  61. _LIBCPP_HIDE_FROM_ABI result_type n() const { return __p_.n(); }
  62. _LIBCPP_HIDE_FROM_ABI param_type param() const { return __p_; }
  63. _LIBCPP_HIDE_FROM_ABI void param(const param_type& __p) { __p_ = __p; }
  64. _LIBCPP_HIDE_FROM_ABI result_type min() const { return 0; }
  65. _LIBCPP_HIDE_FROM_ABI result_type max() const { return numeric_limits<result_type>::infinity(); }
  66. friend _LIBCPP_HIDE_FROM_ABI bool
  67. operator==(const chi_squared_distribution& __x, const chi_squared_distribution& __y) {
  68. return __x.__p_ == __y.__p_;
  69. }
  70. friend _LIBCPP_HIDE_FROM_ABI bool
  71. operator!=(const chi_squared_distribution& __x, const chi_squared_distribution& __y) {
  72. return !(__x == __y);
  73. }
  74. };
  75. template <class _CharT, class _Traits, class _RT>
  76. _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>&
  77. operator<<(basic_ostream<_CharT, _Traits>& __os, const chi_squared_distribution<_RT>& __x) {
  78. __save_flags<_CharT, _Traits> __lx(__os);
  79. typedef basic_ostream<_CharT, _Traits> _OStream;
  80. __os.flags(_OStream::dec | _OStream::left | _OStream::fixed | _OStream::scientific);
  81. __os << __x.n();
  82. return __os;
  83. }
  84. template <class _CharT, class _Traits, class _RT>
  85. _LIBCPP_HIDE_FROM_ABI basic_istream<_CharT, _Traits>&
  86. operator>>(basic_istream<_CharT, _Traits>& __is, chi_squared_distribution<_RT>& __x) {
  87. typedef chi_squared_distribution<_RT> _Eng;
  88. typedef typename _Eng::result_type result_type;
  89. typedef typename _Eng::param_type param_type;
  90. __save_flags<_CharT, _Traits> __lx(__is);
  91. typedef basic_istream<_CharT, _Traits> _Istream;
  92. __is.flags(_Istream::dec | _Istream::skipws);
  93. result_type __n;
  94. __is >> __n;
  95. if (!__is.fail())
  96. __x.param(param_type(__n));
  97. return __is;
  98. }
  99. _LIBCPP_END_NAMESPACE_STD
  100. _LIBCPP_POP_MACROS
  101. #endif // _LIBCPP___RANDOM_CHI_SQUARED_DISTRIBUTION_H