Revert "[libc] Use best-fit binary trie to make malloc logarithmic" (#117065)
[llvm-project.git] / libcxx / include / __random / chi_squared_distribution.h
blobefa96dcdaafb5d30f3e4ec5942384786b73c3f65
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 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP___RANDOM_CHI_SQUARED_DISTRIBUTION_H
10 #define _LIBCPP___RANDOM_CHI_SQUARED_DISTRIBUTION_H
12 #include <__config>
13 #include <__random/gamma_distribution.h>
14 #include <__random/is_valid.h>
15 #include <iosfwd>
16 #include <limits>
18 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
19 # pragma GCC system_header
20 #endif
22 _LIBCPP_PUSH_MACROS
23 #include <__undef_macros>
25 _LIBCPP_BEGIN_NAMESPACE_STD
27 template <class _RealType = double>
28 class _LIBCPP_TEMPLATE_VIS chi_squared_distribution {
29 static_assert(__libcpp_random_is_valid_realtype<_RealType>::value,
30 "RealType must be a supported floating-point type");
32 public:
33 // types
34 typedef _RealType result_type;
36 class _LIBCPP_TEMPLATE_VIS param_type {
37 result_type __n_;
39 public:
40 typedef chi_squared_distribution distribution_type;
42 _LIBCPP_HIDE_FROM_ABI explicit param_type(result_type __n = 1) : __n_(__n) {}
44 _LIBCPP_HIDE_FROM_ABI result_type n() const { return __n_; }
46 friend _LIBCPP_HIDE_FROM_ABI bool operator==(const param_type& __x, const param_type& __y) {
47 return __x.__n_ == __y.__n_;
49 friend _LIBCPP_HIDE_FROM_ABI bool operator!=(const param_type& __x, const param_type& __y) { return !(__x == __y); }
52 private:
53 param_type __p_;
55 public:
56 // constructor and reset functions
57 #ifndef _LIBCPP_CXX03_LANG
58 _LIBCPP_HIDE_FROM_ABI chi_squared_distribution() : chi_squared_distribution(1) {}
59 _LIBCPP_HIDE_FROM_ABI explicit chi_squared_distribution(result_type __n) : __p_(param_type(__n)) {}
60 #else
61 _LIBCPP_HIDE_FROM_ABI explicit chi_squared_distribution(result_type __n = 1) : __p_(param_type(__n)) {}
62 #endif
63 _LIBCPP_HIDE_FROM_ABI explicit chi_squared_distribution(const param_type& __p) : __p_(__p) {}
64 _LIBCPP_HIDE_FROM_ABI void reset() {}
66 // generating functions
67 template <class _URNG>
68 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g) {
69 return (*this)(__g, __p_);
71 template <class _URNG>
72 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p) {
73 return gamma_distribution<result_type>(__p.n() / 2, 2)(__g);
76 // property functions
77 _LIBCPP_HIDE_FROM_ABI result_type n() const { return __p_.n(); }
79 _LIBCPP_HIDE_FROM_ABI param_type param() const { return __p_; }
80 _LIBCPP_HIDE_FROM_ABI void param(const param_type& __p) { __p_ = __p; }
82 _LIBCPP_HIDE_FROM_ABI result_type min() const { return 0; }
83 _LIBCPP_HIDE_FROM_ABI result_type max() const { return numeric_limits<result_type>::infinity(); }
85 friend _LIBCPP_HIDE_FROM_ABI bool
86 operator==(const chi_squared_distribution& __x, const chi_squared_distribution& __y) {
87 return __x.__p_ == __y.__p_;
89 friend _LIBCPP_HIDE_FROM_ABI bool
90 operator!=(const chi_squared_distribution& __x, const chi_squared_distribution& __y) {
91 return !(__x == __y);
95 template <class _CharT, class _Traits, class _RT>
96 _LIBCPP_HIDE_FROM_ABI basic_ostream<_CharT, _Traits>&
97 operator<<(basic_ostream<_CharT, _Traits>& __os, const chi_squared_distribution<_RT>& __x) {
98 __save_flags<_CharT, _Traits> __lx(__os);
99 typedef basic_ostream<_CharT, _Traits> _OStream;
100 __os.flags(_OStream::dec | _OStream::left | _OStream::fixed | _OStream::scientific);
101 __os << __x.n();
102 return __os;
105 template <class _CharT, class _Traits, class _RT>
106 _LIBCPP_HIDE_FROM_ABI basic_istream<_CharT, _Traits>&
107 operator>>(basic_istream<_CharT, _Traits>& __is, chi_squared_distribution<_RT>& __x) {
108 typedef chi_squared_distribution<_RT> _Eng;
109 typedef typename _Eng::result_type result_type;
110 typedef typename _Eng::param_type param_type;
111 __save_flags<_CharT, _Traits> __lx(__is);
112 typedef basic_istream<_CharT, _Traits> _Istream;
113 __is.flags(_Istream::dec | _Istream::skipws);
114 result_type __n;
115 __is >> __n;
116 if (!__is.fail())
117 __x.param(param_type(__n));
118 return __is;
121 _LIBCPP_END_NAMESPACE_STD
123 _LIBCPP_POP_MACROS
125 #endif // _LIBCPP___RANDOM_CHI_SQUARED_DISTRIBUTION_H