| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851 |
- // Random number extensions -*- C++ -*-
- // Copyright (C) 2012-2019 Free Software Foundation, Inc.
- //
- // This file is part of the GNU ISO C++ Library. This library is free
- // software; you can redistribute it and/or modify it under the
- // terms of the GNU General Public License as published by the
- // Free Software Foundation; either version 3, or (at your option)
- // any later version.
- // This library is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- // Under Section 7 of GPL version 3, you are granted additional
- // permissions described in the GCC Runtime Library Exception, version
- // 3.1, as published by the Free Software Foundation.
- // You should have received a copy of the GNU General Public License and
- // a copy of the GCC Runtime Library Exception along with this program;
- // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
- // <http://www.gnu.org/licenses/>.
- /** @file ext/random.tcc
- * This is an internal header file, included by other library headers.
- * Do not attempt to use it directly. @headername{ext/random}
- */
- #ifndef _EXT_RANDOM_TCC
- #define _EXT_RANDOM_TCC 1
- #pragma GCC system_header
- namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
- {
- _GLIBCXX_BEGIN_NAMESPACE_VERSION
- #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
- template<typename _UIntType, size_t __m,
- size_t __pos1, size_t __sl1, size_t __sl2,
- size_t __sr1, size_t __sr2,
- uint32_t __msk1, uint32_t __msk2,
- uint32_t __msk3, uint32_t __msk4,
- uint32_t __parity1, uint32_t __parity2,
- uint32_t __parity3, uint32_t __parity4>
- void simd_fast_mersenne_twister_engine<_UIntType, __m,
- __pos1, __sl1, __sl2, __sr1, __sr2,
- __msk1, __msk2, __msk3, __msk4,
- __parity1, __parity2, __parity3,
- __parity4>::
- seed(_UIntType __seed)
- {
- _M_state32[0] = static_cast<uint32_t>(__seed);
- for (size_t __i = 1; __i < _M_nstate32; ++__i)
- _M_state32[__i] = (1812433253UL
- * (_M_state32[__i - 1] ^ (_M_state32[__i - 1] >> 30))
- + __i);
- _M_pos = state_size;
- _M_period_certification();
- }
- namespace {
- inline uint32_t _Func1(uint32_t __x)
- {
- return (__x ^ (__x >> 27)) * UINT32_C(1664525);
- }
- inline uint32_t _Func2(uint32_t __x)
- {
- return (__x ^ (__x >> 27)) * UINT32_C(1566083941);
- }
- }
- template<typename _UIntType, size_t __m,
- size_t __pos1, size_t __sl1, size_t __sl2,
- size_t __sr1, size_t __sr2,
- uint32_t __msk1, uint32_t __msk2,
- uint32_t __msk3, uint32_t __msk4,
- uint32_t __parity1, uint32_t __parity2,
- uint32_t __parity3, uint32_t __parity4>
- template<typename _Sseq>
- auto
- simd_fast_mersenne_twister_engine<_UIntType, __m,
- __pos1, __sl1, __sl2, __sr1, __sr2,
- __msk1, __msk2, __msk3, __msk4,
- __parity1, __parity2, __parity3,
- __parity4>::
- seed(_Sseq& __q)
- -> _If_seed_seq<_Sseq>
- {
- size_t __lag;
- if (_M_nstate32 >= 623)
- __lag = 11;
- else if (_M_nstate32 >= 68)
- __lag = 7;
- else if (_M_nstate32 >= 39)
- __lag = 5;
- else
- __lag = 3;
- const size_t __mid = (_M_nstate32 - __lag) / 2;
- std::fill(_M_state32, _M_state32 + _M_nstate32, UINT32_C(0x8b8b8b8b));
- uint32_t __arr[_M_nstate32];
- __q.generate(__arr + 0, __arr + _M_nstate32);
- uint32_t __r = _Func1(_M_state32[0] ^ _M_state32[__mid]
- ^ _M_state32[_M_nstate32 - 1]);
- _M_state32[__mid] += __r;
- __r += _M_nstate32;
- _M_state32[__mid + __lag] += __r;
- _M_state32[0] = __r;
- for (size_t __i = 1, __j = 0; __j < _M_nstate32; ++__j)
- {
- __r = _Func1(_M_state32[__i]
- ^ _M_state32[(__i + __mid) % _M_nstate32]
- ^ _M_state32[(__i + _M_nstate32 - 1) % _M_nstate32]);
- _M_state32[(__i + __mid) % _M_nstate32] += __r;
- __r += __arr[__j] + __i;
- _M_state32[(__i + __mid + __lag) % _M_nstate32] += __r;
- _M_state32[__i] = __r;
- __i = (__i + 1) % _M_nstate32;
- }
- for (size_t __j = 0; __j < _M_nstate32; ++__j)
- {
- const size_t __i = (__j + 1) % _M_nstate32;
- __r = _Func2(_M_state32[__i]
- + _M_state32[(__i + __mid) % _M_nstate32]
- + _M_state32[(__i + _M_nstate32 - 1) % _M_nstate32]);
- _M_state32[(__i + __mid) % _M_nstate32] ^= __r;
- __r -= __i;
- _M_state32[(__i + __mid + __lag) % _M_nstate32] ^= __r;
- _M_state32[__i] = __r;
- }
- _M_pos = state_size;
- _M_period_certification();
- }
- template<typename _UIntType, size_t __m,
- size_t __pos1, size_t __sl1, size_t __sl2,
- size_t __sr1, size_t __sr2,
- uint32_t __msk1, uint32_t __msk2,
- uint32_t __msk3, uint32_t __msk4,
- uint32_t __parity1, uint32_t __parity2,
- uint32_t __parity3, uint32_t __parity4>
- void simd_fast_mersenne_twister_engine<_UIntType, __m,
- __pos1, __sl1, __sl2, __sr1, __sr2,
- __msk1, __msk2, __msk3, __msk4,
- __parity1, __parity2, __parity3,
- __parity4>::
- _M_period_certification(void)
- {
- static const uint32_t __parity[4] = { __parity1, __parity2,
- __parity3, __parity4 };
- uint32_t __inner = 0;
- for (size_t __i = 0; __i < 4; ++__i)
- if (__parity[__i] != 0)
- __inner ^= _M_state32[__i] & __parity[__i];
- if (__builtin_parity(__inner) & 1)
- return;
- for (size_t __i = 0; __i < 4; ++__i)
- if (__parity[__i] != 0)
- {
- _M_state32[__i] ^= 1 << (__builtin_ffs(__parity[__i]) - 1);
- return;
- }
- __builtin_unreachable();
- }
- template<typename _UIntType, size_t __m,
- size_t __pos1, size_t __sl1, size_t __sl2,
- size_t __sr1, size_t __sr2,
- uint32_t __msk1, uint32_t __msk2,
- uint32_t __msk3, uint32_t __msk4,
- uint32_t __parity1, uint32_t __parity2,
- uint32_t __parity3, uint32_t __parity4>
- void simd_fast_mersenne_twister_engine<_UIntType, __m,
- __pos1, __sl1, __sl2, __sr1, __sr2,
- __msk1, __msk2, __msk3, __msk4,
- __parity1, __parity2, __parity3,
- __parity4>::
- discard(unsigned long long __z)
- {
- while (__z > state_size - _M_pos)
- {
- __z -= state_size - _M_pos;
- _M_gen_rand();
- }
- _M_pos += __z;
- }
- #ifndef _GLIBCXX_OPT_HAVE_RANDOM_SFMT_GEN_READ
- namespace {
- template<size_t __shift>
- inline void __rshift(uint32_t *__out, const uint32_t *__in)
- {
- uint64_t __th = ((static_cast<uint64_t>(__in[3]) << 32)
- | static_cast<uint64_t>(__in[2]));
- uint64_t __tl = ((static_cast<uint64_t>(__in[1]) << 32)
- | static_cast<uint64_t>(__in[0]));
- uint64_t __oh = __th >> (__shift * 8);
- uint64_t __ol = __tl >> (__shift * 8);
- __ol |= __th << (64 - __shift * 8);
- __out[1] = static_cast<uint32_t>(__ol >> 32);
- __out[0] = static_cast<uint32_t>(__ol);
- __out[3] = static_cast<uint32_t>(__oh >> 32);
- __out[2] = static_cast<uint32_t>(__oh);
- }
- template<size_t __shift>
- inline void __lshift(uint32_t *__out, const uint32_t *__in)
- {
- uint64_t __th = ((static_cast<uint64_t>(__in[3]) << 32)
- | static_cast<uint64_t>(__in[2]));
- uint64_t __tl = ((static_cast<uint64_t>(__in[1]) << 32)
- | static_cast<uint64_t>(__in[0]));
- uint64_t __oh = __th << (__shift * 8);
- uint64_t __ol = __tl << (__shift * 8);
- __oh |= __tl >> (64 - __shift * 8);
- __out[1] = static_cast<uint32_t>(__ol >> 32);
- __out[0] = static_cast<uint32_t>(__ol);
- __out[3] = static_cast<uint32_t>(__oh >> 32);
- __out[2] = static_cast<uint32_t>(__oh);
- }
- template<size_t __sl1, size_t __sl2, size_t __sr1, size_t __sr2,
- uint32_t __msk1, uint32_t __msk2, uint32_t __msk3, uint32_t __msk4>
- inline void __recursion(uint32_t *__r,
- const uint32_t *__a, const uint32_t *__b,
- const uint32_t *__c, const uint32_t *__d)
- {
- uint32_t __x[4];
- uint32_t __y[4];
- __lshift<__sl2>(__x, __a);
- __rshift<__sr2>(__y, __c);
- __r[0] = (__a[0] ^ __x[0] ^ ((__b[0] >> __sr1) & __msk1)
- ^ __y[0] ^ (__d[0] << __sl1));
- __r[1] = (__a[1] ^ __x[1] ^ ((__b[1] >> __sr1) & __msk2)
- ^ __y[1] ^ (__d[1] << __sl1));
- __r[2] = (__a[2] ^ __x[2] ^ ((__b[2] >> __sr1) & __msk3)
- ^ __y[2] ^ (__d[2] << __sl1));
- __r[3] = (__a[3] ^ __x[3] ^ ((__b[3] >> __sr1) & __msk4)
- ^ __y[3] ^ (__d[3] << __sl1));
- }
- }
- template<typename _UIntType, size_t __m,
- size_t __pos1, size_t __sl1, size_t __sl2,
- size_t __sr1, size_t __sr2,
- uint32_t __msk1, uint32_t __msk2,
- uint32_t __msk3, uint32_t __msk4,
- uint32_t __parity1, uint32_t __parity2,
- uint32_t __parity3, uint32_t __parity4>
- void simd_fast_mersenne_twister_engine<_UIntType, __m,
- __pos1, __sl1, __sl2, __sr1, __sr2,
- __msk1, __msk2, __msk3, __msk4,
- __parity1, __parity2, __parity3,
- __parity4>::
- _M_gen_rand(void)
- {
- const uint32_t *__r1 = &_M_state32[_M_nstate32 - 8];
- const uint32_t *__r2 = &_M_state32[_M_nstate32 - 4];
- static constexpr size_t __pos1_32 = __pos1 * 4;
- size_t __i;
- for (__i = 0; __i < _M_nstate32 - __pos1_32; __i += 4)
- {
- __recursion<__sl1, __sl2, __sr1, __sr2,
- __msk1, __msk2, __msk3, __msk4>
- (&_M_state32[__i], &_M_state32[__i],
- &_M_state32[__i + __pos1_32], __r1, __r2);
- __r1 = __r2;
- __r2 = &_M_state32[__i];
- }
- for (; __i < _M_nstate32; __i += 4)
- {
- __recursion<__sl1, __sl2, __sr1, __sr2,
- __msk1, __msk2, __msk3, __msk4>
- (&_M_state32[__i], &_M_state32[__i],
- &_M_state32[__i + __pos1_32 - _M_nstate32], __r1, __r2);
- __r1 = __r2;
- __r2 = &_M_state32[__i];
- }
- _M_pos = 0;
- }
- #endif
- #ifndef _GLIBCXX_OPT_HAVE_RANDOM_SFMT_OPERATOREQUAL
- template<typename _UIntType, size_t __m,
- size_t __pos1, size_t __sl1, size_t __sl2,
- size_t __sr1, size_t __sr2,
- uint32_t __msk1, uint32_t __msk2,
- uint32_t __msk3, uint32_t __msk4,
- uint32_t __parity1, uint32_t __parity2,
- uint32_t __parity3, uint32_t __parity4>
- bool
- operator==(const __gnu_cxx::simd_fast_mersenne_twister_engine<_UIntType,
- __m, __pos1, __sl1, __sl2, __sr1, __sr2,
- __msk1, __msk2, __msk3, __msk4,
- __parity1, __parity2, __parity3, __parity4>& __lhs,
- const __gnu_cxx::simd_fast_mersenne_twister_engine<_UIntType,
- __m, __pos1, __sl1, __sl2, __sr1, __sr2,
- __msk1, __msk2, __msk3, __msk4,
- __parity1, __parity2, __parity3, __parity4>& __rhs)
- {
- typedef __gnu_cxx::simd_fast_mersenne_twister_engine<_UIntType,
- __m, __pos1, __sl1, __sl2, __sr1, __sr2,
- __msk1, __msk2, __msk3, __msk4,
- __parity1, __parity2, __parity3, __parity4> __engine;
- return (std::equal(__lhs._M_stateT,
- __lhs._M_stateT + __engine::state_size,
- __rhs._M_stateT)
- && __lhs._M_pos == __rhs._M_pos);
- }
- #endif
- template<typename _UIntType, size_t __m,
- size_t __pos1, size_t __sl1, size_t __sl2,
- size_t __sr1, size_t __sr2,
- uint32_t __msk1, uint32_t __msk2,
- uint32_t __msk3, uint32_t __msk4,
- uint32_t __parity1, uint32_t __parity2,
- uint32_t __parity3, uint32_t __parity4,
- typename _CharT, typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const __gnu_cxx::simd_fast_mersenne_twister_engine<_UIntType,
- __m, __pos1, __sl1, __sl2, __sr1, __sr2,
- __msk1, __msk2, __msk3, __msk4,
- __parity1, __parity2, __parity3, __parity4>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::dec | __ios_base::fixed | __ios_base::left);
- __os.fill(__space);
- for (size_t __i = 0; __i < __x._M_nstate32; ++__i)
- __os << __x._M_state32[__i] << __space;
- __os << __x._M_pos;
- __os.flags(__flags);
- __os.fill(__fill);
- return __os;
- }
- template<typename _UIntType, size_t __m,
- size_t __pos1, size_t __sl1, size_t __sl2,
- size_t __sr1, size_t __sr2,
- uint32_t __msk1, uint32_t __msk2,
- uint32_t __msk3, uint32_t __msk4,
- uint32_t __parity1, uint32_t __parity2,
- uint32_t __parity3, uint32_t __parity4,
- typename _CharT, typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- __gnu_cxx::simd_fast_mersenne_twister_engine<_UIntType,
- __m, __pos1, __sl1, __sl2, __sr1, __sr2,
- __msk1, __msk2, __msk3, __msk4,
- __parity1, __parity2, __parity3, __parity4>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- for (size_t __i = 0; __i < __x._M_nstate32; ++__i)
- __is >> __x._M_state32[__i];
- __is >> __x._M_pos;
- __is.flags(__flags);
- return __is;
- }
- #endif // __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
- /**
- * Iteration method due to M.D. J<o:>hnk.
- *
- * M.D. J<o:>hnk, Erzeugung von betaverteilten und gammaverteilten
- * Zufallszahlen, Metrika, Volume 8, 1964
- */
- template<typename _RealType>
- template<typename _UniformRandomNumberGenerator>
- typename beta_distribution<_RealType>::result_type
- beta_distribution<_RealType>::
- operator()(_UniformRandomNumberGenerator& __urng,
- const param_type& __param)
- {
- std::__detail::_Adaptor<_UniformRandomNumberGenerator, result_type>
- __aurng(__urng);
- result_type __x, __y;
- do
- {
- __x = std::exp(std::log(__aurng()) / __param.alpha());
- __y = std::exp(std::log(__aurng()) / __param.beta());
- }
- while (__x + __y > result_type(1));
- return __x / (__x + __y);
- }
- template<typename _RealType>
- template<typename _OutputIterator,
- typename _UniformRandomNumberGenerator>
- void
- beta_distribution<_RealType>::
- __generate_impl(_OutputIterator __f, _OutputIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __param)
- {
- __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
- result_type>)
- std::__detail::_Adaptor<_UniformRandomNumberGenerator, result_type>
- __aurng(__urng);
- while (__f != __t)
- {
- result_type __x, __y;
- do
- {
- __x = std::exp(std::log(__aurng()) / __param.alpha());
- __y = std::exp(std::log(__aurng()) / __param.beta());
- }
- while (__x + __y > result_type(1));
- *__f++ = __x / (__x + __y);
- }
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const __gnu_cxx::beta_distribution<_RealType>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const std::streamsize __precision = __os.precision();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::scientific | __ios_base::left);
- __os.fill(__space);
- __os.precision(std::numeric_limits<_RealType>::max_digits10);
- __os << __x.alpha() << __space << __x.beta();
- __os.flags(__flags);
- __os.fill(__fill);
- __os.precision(__precision);
- return __os;
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- __gnu_cxx::beta_distribution<_RealType>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- _RealType __alpha_val, __beta_val;
- __is >> __alpha_val >> __beta_val;
- __x.param(typename __gnu_cxx::beta_distribution<_RealType>::
- param_type(__alpha_val, __beta_val));
- __is.flags(__flags);
- return __is;
- }
- template<std::size_t _Dimen, typename _RealType>
- template<typename _InputIterator1, typename _InputIterator2>
- void
- normal_mv_distribution<_Dimen, _RealType>::param_type::
- _M_init_full(_InputIterator1 __meanbegin, _InputIterator1 __meanend,
- _InputIterator2 __varcovbegin, _InputIterator2 __varcovend)
- {
- __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
- __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
- std::fill(std::copy(__meanbegin, __meanend, _M_mean.begin()),
- _M_mean.end(), _RealType(0));
- // Perform the Cholesky decomposition
- auto __w = _M_t.begin();
- for (size_t __j = 0; __j < _Dimen; ++__j)
- {
- _RealType __sum = _RealType(0);
- auto __slitbegin = __w;
- auto __cit = _M_t.begin();
- for (size_t __i = 0; __i < __j; ++__i)
- {
- auto __slit = __slitbegin;
- _RealType __s = *__varcovbegin++;
- for (size_t __k = 0; __k < __i; ++__k)
- __s -= *__slit++ * *__cit++;
- *__w++ = __s /= *__cit++;
- __sum += __s * __s;
- }
- __sum = *__varcovbegin - __sum;
- if (__builtin_expect(__sum <= _RealType(0), 0))
- std::__throw_runtime_error(__N("normal_mv_distribution::"
- "param_type::_M_init_full"));
- *__w++ = std::sqrt(__sum);
- std::advance(__varcovbegin, _Dimen - __j);
- }
- }
- template<std::size_t _Dimen, typename _RealType>
- template<typename _InputIterator1, typename _InputIterator2>
- void
- normal_mv_distribution<_Dimen, _RealType>::param_type::
- _M_init_lower(_InputIterator1 __meanbegin, _InputIterator1 __meanend,
- _InputIterator2 __varcovbegin, _InputIterator2 __varcovend)
- {
- __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
- __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
- std::fill(std::copy(__meanbegin, __meanend, _M_mean.begin()),
- _M_mean.end(), _RealType(0));
- // Perform the Cholesky decomposition
- auto __w = _M_t.begin();
- for (size_t __j = 0; __j < _Dimen; ++__j)
- {
- _RealType __sum = _RealType(0);
- auto __slitbegin = __w;
- auto __cit = _M_t.begin();
- for (size_t __i = 0; __i < __j; ++__i)
- {
- auto __slit = __slitbegin;
- _RealType __s = *__varcovbegin++;
- for (size_t __k = 0; __k < __i; ++__k)
- __s -= *__slit++ * *__cit++;
- *__w++ = __s /= *__cit++;
- __sum += __s * __s;
- }
- __sum = *__varcovbegin++ - __sum;
- if (__builtin_expect(__sum <= _RealType(0), 0))
- std::__throw_runtime_error(__N("normal_mv_distribution::"
- "param_type::_M_init_full"));
- *__w++ = std::sqrt(__sum);
- }
- }
- template<std::size_t _Dimen, typename _RealType>
- template<typename _InputIterator1, typename _InputIterator2>
- void
- normal_mv_distribution<_Dimen, _RealType>::param_type::
- _M_init_diagonal(_InputIterator1 __meanbegin, _InputIterator1 __meanend,
- _InputIterator2 __varbegin, _InputIterator2 __varend)
- {
- __glibcxx_function_requires(_InputIteratorConcept<_InputIterator1>)
- __glibcxx_function_requires(_InputIteratorConcept<_InputIterator2>)
- std::fill(std::copy(__meanbegin, __meanend, _M_mean.begin()),
- _M_mean.end(), _RealType(0));
- auto __w = _M_t.begin();
- size_t __step = 0;
- while (__varbegin != __varend)
- {
- std::fill_n(__w, __step, _RealType(0));
- __w += __step++;
- if (__builtin_expect(*__varbegin < _RealType(0), 0))
- std::__throw_runtime_error(__N("normal_mv_distribution::"
- "param_type::_M_init_diagonal"));
- *__w++ = std::sqrt(*__varbegin++);
- }
- }
- template<std::size_t _Dimen, typename _RealType>
- template<typename _UniformRandomNumberGenerator>
- typename normal_mv_distribution<_Dimen, _RealType>::result_type
- normal_mv_distribution<_Dimen, _RealType>::
- operator()(_UniformRandomNumberGenerator& __urng,
- const param_type& __param)
- {
- result_type __ret;
- _M_nd.__generate(__ret.begin(), __ret.end(), __urng);
- auto __t_it = __param._M_t.crbegin();
- for (size_t __i = _Dimen; __i > 0; --__i)
- {
- _RealType __sum = _RealType(0);
- for (size_t __j = __i; __j > 0; --__j)
- __sum += __ret[__j - 1] * *__t_it++;
- __ret[__i - 1] = __sum;
- }
- return __ret;
- }
- template<std::size_t _Dimen, typename _RealType>
- template<typename _ForwardIterator, typename _UniformRandomNumberGenerator>
- void
- normal_mv_distribution<_Dimen, _RealType>::
- __generate_impl(_ForwardIterator __f, _ForwardIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __param)
- {
- __glibcxx_function_requires(_Mutable_ForwardIteratorConcept<
- _ForwardIterator>)
- while (__f != __t)
- *__f++ = this->operator()(__urng, __param);
- }
- template<size_t _Dimen, typename _RealType>
- bool
- operator==(const __gnu_cxx::normal_mv_distribution<_Dimen, _RealType>&
- __d1,
- const __gnu_cxx::normal_mv_distribution<_Dimen, _RealType>&
- __d2)
- {
- return __d1._M_param == __d2._M_param && __d1._M_nd == __d2._M_nd;
- }
- template<size_t _Dimen, typename _RealType, typename _CharT, typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const __gnu_cxx::normal_mv_distribution<_Dimen, _RealType>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const std::streamsize __precision = __os.precision();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::scientific | __ios_base::left);
- __os.fill(__space);
- __os.precision(std::numeric_limits<_RealType>::max_digits10);
- auto __mean = __x._M_param.mean();
- for (auto __it : __mean)
- __os << __it << __space;
- auto __t = __x._M_param.varcov();
- for (auto __it : __t)
- __os << __it << __space;
- __os << __x._M_nd;
- __os.flags(__flags);
- __os.fill(__fill);
- __os.precision(__precision);
- return __os;
- }
- template<size_t _Dimen, typename _RealType, typename _CharT, typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- __gnu_cxx::normal_mv_distribution<_Dimen, _RealType>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- std::array<_RealType, _Dimen> __mean;
- for (auto& __it : __mean)
- __is >> __it;
- std::array<_RealType, _Dimen * (_Dimen + 1) / 2> __varcov;
- for (auto& __it : __varcov)
- __is >> __it;
- __is >> __x._M_nd;
- __x.param(typename normal_mv_distribution<_Dimen, _RealType>::
- param_type(__mean.begin(), __mean.end(),
- __varcov.begin(), __varcov.end()));
- __is.flags(__flags);
- return __is;
- }
- template<typename _RealType>
- template<typename _OutputIterator,
- typename _UniformRandomNumberGenerator>
- void
- rice_distribution<_RealType>::
- __generate_impl(_OutputIterator __f, _OutputIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __p)
- {
- __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
- result_type>)
- while (__f != __t)
- {
- typename std::normal_distribution<result_type>::param_type
- __px(__p.nu(), __p.sigma()), __py(result_type(0), __p.sigma());
- result_type __x = this->_M_ndx(__px, __urng);
- result_type __y = this->_M_ndy(__py, __urng);
- #if _GLIBCXX_USE_C99_MATH_TR1
- *__f++ = std::hypot(__x, __y);
- #else
- *__f++ = std::sqrt(__x * __x + __y * __y);
- #endif
- }
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const rice_distribution<_RealType>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const std::streamsize __precision = __os.precision();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::scientific | __ios_base::left);
- __os.fill(__space);
- __os.precision(std::numeric_limits<_RealType>::max_digits10);
- __os << __x.nu() << __space << __x.sigma();
- __os << __space << __x._M_ndx;
- __os << __space << __x._M_ndy;
- __os.flags(__flags);
- __os.fill(__fill);
- __os.precision(__precision);
- return __os;
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- rice_distribution<_RealType>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- _RealType __nu_val, __sigma_val;
- __is >> __nu_val >> __sigma_val;
- __is >> __x._M_ndx;
- __is >> __x._M_ndy;
- __x.param(typename rice_distribution<_RealType>::
- param_type(__nu_val, __sigma_val));
- __is.flags(__flags);
- return __is;
- }
- template<typename _RealType>
- template<typename _OutputIterator,
- typename _UniformRandomNumberGenerator>
- void
- nakagami_distribution<_RealType>::
- __generate_impl(_OutputIterator __f, _OutputIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __p)
- {
- __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
- result_type>)
- typename std::gamma_distribution<result_type>::param_type
- __pg(__p.mu(), __p.omega() / __p.mu());
- while (__f != __t)
- *__f++ = std::sqrt(this->_M_gd(__pg, __urng));
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const nakagami_distribution<_RealType>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const std::streamsize __precision = __os.precision();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::scientific | __ios_base::left);
- __os.fill(__space);
- __os.precision(std::numeric_limits<_RealType>::max_digits10);
- __os << __x.mu() << __space << __x.omega();
- __os << __space << __x._M_gd;
- __os.flags(__flags);
- __os.fill(__fill);
- __os.precision(__precision);
- return __os;
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- nakagami_distribution<_RealType>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- _RealType __mu_val, __omega_val;
- __is >> __mu_val >> __omega_val;
- __is >> __x._M_gd;
- __x.param(typename nakagami_distribution<_RealType>::
- param_type(__mu_val, __omega_val));
- __is.flags(__flags);
- return __is;
- }
- template<typename _RealType>
- template<typename _OutputIterator,
- typename _UniformRandomNumberGenerator>
- void
- pareto_distribution<_RealType>::
- __generate_impl(_OutputIterator __f, _OutputIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __p)
- {
- __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
- result_type>)
- result_type __mu_val = __p.mu();
- result_type __malphinv = -result_type(1) / __p.alpha();
- while (__f != __t)
- *__f++ = __mu_val * std::pow(this->_M_ud(__urng), __malphinv);
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const pareto_distribution<_RealType>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const std::streamsize __precision = __os.precision();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::scientific | __ios_base::left);
- __os.fill(__space);
- __os.precision(std::numeric_limits<_RealType>::max_digits10);
- __os << __x.alpha() << __space << __x.mu();
- __os << __space << __x._M_ud;
- __os.flags(__flags);
- __os.fill(__fill);
- __os.precision(__precision);
- return __os;
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- pareto_distribution<_RealType>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- _RealType __alpha_val, __mu_val;
- __is >> __alpha_val >> __mu_val;
- __is >> __x._M_ud;
- __x.param(typename pareto_distribution<_RealType>::
- param_type(__alpha_val, __mu_val));
- __is.flags(__flags);
- return __is;
- }
- template<typename _RealType>
- template<typename _UniformRandomNumberGenerator>
- typename k_distribution<_RealType>::result_type
- k_distribution<_RealType>::
- operator()(_UniformRandomNumberGenerator& __urng)
- {
- result_type __x = this->_M_gd1(__urng);
- result_type __y = this->_M_gd2(__urng);
- return std::sqrt(__x * __y);
- }
- template<typename _RealType>
- template<typename _UniformRandomNumberGenerator>
- typename k_distribution<_RealType>::result_type
- k_distribution<_RealType>::
- operator()(_UniformRandomNumberGenerator& __urng,
- const param_type& __p)
- {
- typename std::gamma_distribution<result_type>::param_type
- __p1(__p.lambda(), result_type(1) / __p.lambda()),
- __p2(__p.nu(), __p.mu() / __p.nu());
- result_type __x = this->_M_gd1(__p1, __urng);
- result_type __y = this->_M_gd2(__p2, __urng);
- return std::sqrt(__x * __y);
- }
- template<typename _RealType>
- template<typename _OutputIterator,
- typename _UniformRandomNumberGenerator>
- void
- k_distribution<_RealType>::
- __generate_impl(_OutputIterator __f, _OutputIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __p)
- {
- __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
- result_type>)
- typename std::gamma_distribution<result_type>::param_type
- __p1(__p.lambda(), result_type(1) / __p.lambda()),
- __p2(__p.nu(), __p.mu() / __p.nu());
- while (__f != __t)
- {
- result_type __x = this->_M_gd1(__p1, __urng);
- result_type __y = this->_M_gd2(__p2, __urng);
- *__f++ = std::sqrt(__x * __y);
- }
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const k_distribution<_RealType>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const std::streamsize __precision = __os.precision();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::scientific | __ios_base::left);
- __os.fill(__space);
- __os.precision(std::numeric_limits<_RealType>::max_digits10);
- __os << __x.lambda() << __space << __x.mu() << __space << __x.nu();
- __os << __space << __x._M_gd1;
- __os << __space << __x._M_gd2;
- __os.flags(__flags);
- __os.fill(__fill);
- __os.precision(__precision);
- return __os;
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- k_distribution<_RealType>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- _RealType __lambda_val, __mu_val, __nu_val;
- __is >> __lambda_val >> __mu_val >> __nu_val;
- __is >> __x._M_gd1;
- __is >> __x._M_gd2;
- __x.param(typename k_distribution<_RealType>::
- param_type(__lambda_val, __mu_val, __nu_val));
- __is.flags(__flags);
- return __is;
- }
- template<typename _RealType>
- template<typename _OutputIterator,
- typename _UniformRandomNumberGenerator>
- void
- arcsine_distribution<_RealType>::
- __generate_impl(_OutputIterator __f, _OutputIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __p)
- {
- __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
- result_type>)
- result_type __dif = __p.b() - __p.a();
- result_type __sum = __p.a() + __p.b();
- while (__f != __t)
- {
- result_type __x = std::sin(this->_M_ud(__urng));
- *__f++ = (__x * __dif + __sum) / result_type(2);
- }
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const arcsine_distribution<_RealType>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const std::streamsize __precision = __os.precision();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::scientific | __ios_base::left);
- __os.fill(__space);
- __os.precision(std::numeric_limits<_RealType>::max_digits10);
- __os << __x.a() << __space << __x.b();
- __os << __space << __x._M_ud;
- __os.flags(__flags);
- __os.fill(__fill);
- __os.precision(__precision);
- return __os;
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- arcsine_distribution<_RealType>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- _RealType __a, __b;
- __is >> __a >> __b;
- __is >> __x._M_ud;
- __x.param(typename arcsine_distribution<_RealType>::
- param_type(__a, __b));
- __is.flags(__flags);
- return __is;
- }
- template<typename _RealType>
- template<typename _UniformRandomNumberGenerator>
- typename hoyt_distribution<_RealType>::result_type
- hoyt_distribution<_RealType>::
- operator()(_UniformRandomNumberGenerator& __urng)
- {
- result_type __x = this->_M_ad(__urng);
- result_type __y = this->_M_ed(__urng);
- return (result_type(2) * this->q()
- / (result_type(1) + this->q() * this->q()))
- * std::sqrt(this->omega() * __x * __y);
- }
- template<typename _RealType>
- template<typename _UniformRandomNumberGenerator>
- typename hoyt_distribution<_RealType>::result_type
- hoyt_distribution<_RealType>::
- operator()(_UniformRandomNumberGenerator& __urng,
- const param_type& __p)
- {
- result_type __q2 = __p.q() * __p.q();
- result_type __num = result_type(0.5L) * (result_type(1) + __q2);
- typename __gnu_cxx::arcsine_distribution<result_type>::param_type
- __pa(__num, __num / __q2);
- result_type __x = this->_M_ad(__pa, __urng);
- result_type __y = this->_M_ed(__urng);
- return (result_type(2) * __p.q() / (result_type(1) + __q2))
- * std::sqrt(__p.omega() * __x * __y);
- }
- template<typename _RealType>
- template<typename _OutputIterator,
- typename _UniformRandomNumberGenerator>
- void
- hoyt_distribution<_RealType>::
- __generate_impl(_OutputIterator __f, _OutputIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __p)
- {
- __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
- result_type>)
- result_type __2q = result_type(2) * __p.q();
- result_type __q2 = __p.q() * __p.q();
- result_type __q2p1 = result_type(1) + __q2;
- result_type __num = result_type(0.5L) * __q2p1;
- result_type __omega = __p.omega();
- typename __gnu_cxx::arcsine_distribution<result_type>::param_type
- __pa(__num, __num / __q2);
- while (__f != __t)
- {
- result_type __x = this->_M_ad(__pa, __urng);
- result_type __y = this->_M_ed(__urng);
- *__f++ = (__2q / __q2p1) * std::sqrt(__omega * __x * __y);
- }
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const hoyt_distribution<_RealType>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const std::streamsize __precision = __os.precision();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::scientific | __ios_base::left);
- __os.fill(__space);
- __os.precision(std::numeric_limits<_RealType>::max_digits10);
- __os << __x.q() << __space << __x.omega();
- __os << __space << __x._M_ad;
- __os << __space << __x._M_ed;
- __os.flags(__flags);
- __os.fill(__fill);
- __os.precision(__precision);
- return __os;
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- hoyt_distribution<_RealType>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- _RealType __q, __omega;
- __is >> __q >> __omega;
- __is >> __x._M_ad;
- __is >> __x._M_ed;
- __x.param(typename hoyt_distribution<_RealType>::
- param_type(__q, __omega));
- __is.flags(__flags);
- return __is;
- }
- template<typename _RealType>
- template<typename _OutputIterator,
- typename _UniformRandomNumberGenerator>
- void
- triangular_distribution<_RealType>::
- __generate_impl(_OutputIterator __f, _OutputIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __param)
- {
- __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
- result_type>)
- while (__f != __t)
- *__f++ = this->operator()(__urng, __param);
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const __gnu_cxx::triangular_distribution<_RealType>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const std::streamsize __precision = __os.precision();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::scientific | __ios_base::left);
- __os.fill(__space);
- __os.precision(std::numeric_limits<_RealType>::max_digits10);
- __os << __x.a() << __space << __x.b() << __space << __x.c();
- __os.flags(__flags);
- __os.fill(__fill);
- __os.precision(__precision);
- return __os;
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- __gnu_cxx::triangular_distribution<_RealType>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- _RealType __a, __b, __c;
- __is >> __a >> __b >> __c;
- __x.param(typename __gnu_cxx::triangular_distribution<_RealType>::
- param_type(__a, __b, __c));
- __is.flags(__flags);
- return __is;
- }
- template<typename _RealType>
- template<typename _UniformRandomNumberGenerator>
- typename von_mises_distribution<_RealType>::result_type
- von_mises_distribution<_RealType>::
- operator()(_UniformRandomNumberGenerator& __urng,
- const param_type& __p)
- {
- const result_type __pi
- = __gnu_cxx::__math_constants<result_type>::__pi;
- std::__detail::_Adaptor<_UniformRandomNumberGenerator, result_type>
- __aurng(__urng);
- result_type __f;
- while (1)
- {
- result_type __rnd = std::cos(__pi * __aurng());
- __f = (result_type(1) + __p._M_r * __rnd) / (__p._M_r + __rnd);
- result_type __c = __p._M_kappa * (__p._M_r - __f);
- result_type __rnd2 = __aurng();
- if (__c * (result_type(2) - __c) > __rnd2)
- break;
- if (std::log(__c / __rnd2) >= __c - result_type(1))
- break;
- }
- result_type __res = std::acos(__f);
- #if _GLIBCXX_USE_C99_MATH_TR1
- __res = std::copysign(__res, __aurng() - result_type(0.5));
- #else
- if (__aurng() < result_type(0.5))
- __res = -__res;
- #endif
- __res += __p._M_mu;
- if (__res > __pi)
- __res -= result_type(2) * __pi;
- else if (__res < -__pi)
- __res += result_type(2) * __pi;
- return __res;
- }
- template<typename _RealType>
- template<typename _OutputIterator,
- typename _UniformRandomNumberGenerator>
- void
- von_mises_distribution<_RealType>::
- __generate_impl(_OutputIterator __f, _OutputIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __param)
- {
- __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
- result_type>)
- while (__f != __t)
- *__f++ = this->operator()(__urng, __param);
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const __gnu_cxx::von_mises_distribution<_RealType>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const std::streamsize __precision = __os.precision();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::scientific | __ios_base::left);
- __os.fill(__space);
- __os.precision(std::numeric_limits<_RealType>::max_digits10);
- __os << __x.mu() << __space << __x.kappa();
- __os.flags(__flags);
- __os.fill(__fill);
- __os.precision(__precision);
- return __os;
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- __gnu_cxx::von_mises_distribution<_RealType>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- _RealType __mu, __kappa;
- __is >> __mu >> __kappa;
- __x.param(typename __gnu_cxx::von_mises_distribution<_RealType>::
- param_type(__mu, __kappa));
- __is.flags(__flags);
- return __is;
- }
- template<typename _UIntType>
- template<typename _UniformRandomNumberGenerator>
- typename hypergeometric_distribution<_UIntType>::result_type
- hypergeometric_distribution<_UIntType>::
- operator()(_UniformRandomNumberGenerator& __urng,
- const param_type& __param)
- {
- std::__detail::_Adaptor<_UniformRandomNumberGenerator, double>
- __aurng(__urng);
- result_type __a = __param.successful_size();
- result_type __b = __param.total_size();
- result_type __k = 0;
- if (__param.total_draws() < __param.total_size() / 2)
- {
- for (result_type __i = 0; __i < __param.total_draws(); ++__i)
- {
- if (__b * __aurng() < __a)
- {
- ++__k;
- if (__k == __param.successful_size())
- return __k;
- --__a;
- }
- --__b;
- }
- return __k;
- }
- else
- {
- for (result_type __i = 0; __i < __param.unsuccessful_size(); ++__i)
- {
- if (__b * __aurng() < __a)
- {
- ++__k;
- if (__k == __param.successful_size())
- return __param.successful_size() - __k;
- --__a;
- }
- --__b;
- }
- return __param.successful_size() - __k;
- }
- }
- template<typename _UIntType>
- template<typename _OutputIterator,
- typename _UniformRandomNumberGenerator>
- void
- hypergeometric_distribution<_UIntType>::
- __generate_impl(_OutputIterator __f, _OutputIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __param)
- {
- __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
- result_type>)
- while (__f != __t)
- *__f++ = this->operator()(__urng);
- }
- template<typename _UIntType, typename _CharT, typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const __gnu_cxx::hypergeometric_distribution<_UIntType>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const std::streamsize __precision = __os.precision();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::scientific | __ios_base::left);
- __os.fill(__space);
- __os.precision(std::numeric_limits<_UIntType>::max_digits10);
- __os << __x.total_size() << __space << __x.successful_size() << __space
- << __x.total_draws();
- __os.flags(__flags);
- __os.fill(__fill);
- __os.precision(__precision);
- return __os;
- }
- template<typename _UIntType, typename _CharT, typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- __gnu_cxx::hypergeometric_distribution<_UIntType>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- _UIntType __total_size, __successful_size, __total_draws;
- __is >> __total_size >> __successful_size >> __total_draws;
- __x.param(typename __gnu_cxx::hypergeometric_distribution<_UIntType>::
- param_type(__total_size, __successful_size, __total_draws));
- __is.flags(__flags);
- return __is;
- }
- template<typename _RealType>
- template<typename _UniformRandomNumberGenerator>
- typename logistic_distribution<_RealType>::result_type
- logistic_distribution<_RealType>::
- operator()(_UniformRandomNumberGenerator& __urng,
- const param_type& __p)
- {
- std::__detail::_Adaptor<_UniformRandomNumberGenerator, result_type>
- __aurng(__urng);
- result_type __arg = result_type(1);
- while (__arg == result_type(1) || __arg == result_type(0))
- __arg = __aurng();
- return __p.a()
- + __p.b() * std::log(__arg / (result_type(1) - __arg));
- }
- template<typename _RealType>
- template<typename _OutputIterator,
- typename _UniformRandomNumberGenerator>
- void
- logistic_distribution<_RealType>::
- __generate_impl(_OutputIterator __f, _OutputIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __p)
- {
- __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
- result_type>)
- std::__detail::_Adaptor<_UniformRandomNumberGenerator, result_type>
- __aurng(__urng);
- while (__f != __t)
- {
- result_type __arg = result_type(1);
- while (__arg == result_type(1) || __arg == result_type(0))
- __arg = __aurng();
- *__f++ = __p.a()
- + __p.b() * std::log(__arg / (result_type(1) - __arg));
- }
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const logistic_distribution<_RealType>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const std::streamsize __precision = __os.precision();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::scientific | __ios_base::left);
- __os.fill(__space);
- __os.precision(std::numeric_limits<_RealType>::max_digits10);
- __os << __x.a() << __space << __x.b();
- __os.flags(__flags);
- __os.fill(__fill);
- __os.precision(__precision);
- return __os;
- }
- template<typename _RealType, typename _CharT, typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- logistic_distribution<_RealType>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- _RealType __a, __b;
- __is >> __a >> __b;
- __x.param(typename logistic_distribution<_RealType>::
- param_type(__a, __b));
- __is.flags(__flags);
- return __is;
- }
- namespace {
- // Helper class for the uniform_on_sphere_distribution generation
- // function.
- template<std::size_t _Dimen, typename _RealType>
- class uniform_on_sphere_helper
- {
- typedef typename uniform_on_sphere_distribution<_Dimen, _RealType>::
- result_type result_type;
- public:
- template<typename _NormalDistribution,
- typename _UniformRandomNumberGenerator>
- result_type operator()(_NormalDistribution& __nd,
- _UniformRandomNumberGenerator& __urng)
- {
- result_type __ret;
- typename result_type::value_type __norm;
- do
- {
- auto __sum = _RealType(0);
- std::generate(__ret.begin(), __ret.end(),
- [&__nd, &__urng, &__sum](){
- _RealType __t = __nd(__urng);
- __sum += __t * __t;
- return __t; });
- __norm = std::sqrt(__sum);
- }
- while (__norm == _RealType(0) || ! __builtin_isfinite(__norm));
- std::transform(__ret.begin(), __ret.end(), __ret.begin(),
- [__norm](_RealType __val){ return __val / __norm; });
- return __ret;
- }
- };
- template<typename _RealType>
- class uniform_on_sphere_helper<2, _RealType>
- {
- typedef typename uniform_on_sphere_distribution<2, _RealType>::
- result_type result_type;
- public:
- template<typename _NormalDistribution,
- typename _UniformRandomNumberGenerator>
- result_type operator()(_NormalDistribution&,
- _UniformRandomNumberGenerator& __urng)
- {
- result_type __ret;
- _RealType __sq;
- std::__detail::_Adaptor<_UniformRandomNumberGenerator,
- _RealType> __aurng(__urng);
- do
- {
- __ret[0] = _RealType(2) * __aurng() - _RealType(1);
- __ret[1] = _RealType(2) * __aurng() - _RealType(1);
- __sq = __ret[0] * __ret[0] + __ret[1] * __ret[1];
- }
- while (__sq == _RealType(0) || __sq > _RealType(1));
- #if _GLIBCXX_USE_C99_MATH_TR1
- // Yes, we do not just use sqrt(__sq) because hypot() is more
- // accurate.
- auto __norm = std::hypot(__ret[0], __ret[1]);
- #else
- auto __norm = std::sqrt(__sq);
- #endif
- __ret[0] /= __norm;
- __ret[1] /= __norm;
- return __ret;
- }
- };
- }
- template<std::size_t _Dimen, typename _RealType>
- template<typename _UniformRandomNumberGenerator>
- typename uniform_on_sphere_distribution<_Dimen, _RealType>::result_type
- uniform_on_sphere_distribution<_Dimen, _RealType>::
- operator()(_UniformRandomNumberGenerator& __urng,
- const param_type& __p)
- {
- uniform_on_sphere_helper<_Dimen, _RealType> __helper;
- return __helper(_M_nd, __urng);
- }
- template<std::size_t _Dimen, typename _RealType>
- template<typename _OutputIterator,
- typename _UniformRandomNumberGenerator>
- void
- uniform_on_sphere_distribution<_Dimen, _RealType>::
- __generate_impl(_OutputIterator __f, _OutputIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __param)
- {
- __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
- result_type>)
- while (__f != __t)
- *__f++ = this->operator()(__urng, __param);
- }
- template<std::size_t _Dimen, typename _RealType, typename _CharT,
- typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const __gnu_cxx::uniform_on_sphere_distribution<_Dimen,
- _RealType>& __x)
- {
- return __os << __x._M_nd;
- }
- template<std::size_t _Dimen, typename _RealType, typename _CharT,
- typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- __gnu_cxx::uniform_on_sphere_distribution<_Dimen,
- _RealType>& __x)
- {
- return __is >> __x._M_nd;
- }
- namespace {
- // Helper class for the uniform_inside_sphere_distribution generation
- // function.
- template<std::size_t _Dimen, bool _SmallDimen, typename _RealType>
- class uniform_inside_sphere_helper;
- template<std::size_t _Dimen, typename _RealType>
- class uniform_inside_sphere_helper<_Dimen, false, _RealType>
- {
- using result_type
- = typename uniform_inside_sphere_distribution<_Dimen, _RealType>::
- result_type;
- public:
- template<typename _UniformOnSphereDistribution,
- typename _UniformRandomNumberGenerator>
- result_type
- operator()(_UniformOnSphereDistribution& __uosd,
- _UniformRandomNumberGenerator& __urng,
- _RealType __radius)
- {
- std::__detail::_Adaptor<_UniformRandomNumberGenerator,
- _RealType> __aurng(__urng);
- _RealType __pow = 1 / _RealType(_Dimen);
- _RealType __urt = __radius * std::pow(__aurng(), __pow);
- result_type __ret = __uosd(__aurng);
- std::transform(__ret.begin(), __ret.end(), __ret.begin(),
- [__urt](_RealType __val)
- { return __val * __urt; });
- return __ret;
- }
- };
- // Helper class for the uniform_inside_sphere_distribution generation
- // function specialized for small dimensions.
- template<std::size_t _Dimen, typename _RealType>
- class uniform_inside_sphere_helper<_Dimen, true, _RealType>
- {
- using result_type
- = typename uniform_inside_sphere_distribution<_Dimen, _RealType>::
- result_type;
- public:
- template<typename _UniformOnSphereDistribution,
- typename _UniformRandomNumberGenerator>
- result_type
- operator()(_UniformOnSphereDistribution&,
- _UniformRandomNumberGenerator& __urng,
- _RealType __radius)
- {
- result_type __ret;
- _RealType __sq;
- _RealType __radsq = __radius * __radius;
- std::__detail::_Adaptor<_UniformRandomNumberGenerator,
- _RealType> __aurng(__urng);
- do
- {
- __sq = _RealType(0);
- for (int i = 0; i < _Dimen; ++i)
- {
- __ret[i] = _RealType(2) * __aurng() - _RealType(1);
- __sq += __ret[i] * __ret[i];
- }
- }
- while (__sq > _RealType(1));
- for (int i = 0; i < _Dimen; ++i)
- __ret[i] *= __radius;
- return __ret;
- }
- };
- } // namespace
- //
- // Experiments have shown that rejection is more efficient than transform
- // for dimensions less than 8.
- //
- template<std::size_t _Dimen, typename _RealType>
- template<typename _UniformRandomNumberGenerator>
- typename uniform_inside_sphere_distribution<_Dimen, _RealType>::result_type
- uniform_inside_sphere_distribution<_Dimen, _RealType>::
- operator()(_UniformRandomNumberGenerator& __urng,
- const param_type& __p)
- {
- uniform_inside_sphere_helper<_Dimen, _Dimen < 8, _RealType> __helper;
- return __helper(_M_uosd, __urng, __p.radius());
- }
- template<std::size_t _Dimen, typename _RealType>
- template<typename _OutputIterator,
- typename _UniformRandomNumberGenerator>
- void
- uniform_inside_sphere_distribution<_Dimen, _RealType>::
- __generate_impl(_OutputIterator __f, _OutputIterator __t,
- _UniformRandomNumberGenerator& __urng,
- const param_type& __param)
- {
- __glibcxx_function_requires(_OutputIteratorConcept<_OutputIterator,
- result_type>)
- while (__f != __t)
- *__f++ = this->operator()(__urng, __param);
- }
- template<std::size_t _Dimen, typename _RealType, typename _CharT,
- typename _Traits>
- std::basic_ostream<_CharT, _Traits>&
- operator<<(std::basic_ostream<_CharT, _Traits>& __os,
- const __gnu_cxx::uniform_inside_sphere_distribution<_Dimen,
- _RealType>& __x)
- {
- typedef std::basic_ostream<_CharT, _Traits> __ostream_type;
- typedef typename __ostream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __os.flags();
- const _CharT __fill = __os.fill();
- const std::streamsize __precision = __os.precision();
- const _CharT __space = __os.widen(' ');
- __os.flags(__ios_base::scientific | __ios_base::left);
- __os.fill(__space);
- __os.precision(std::numeric_limits<_RealType>::max_digits10);
- __os << __x.radius() << __space << __x._M_uosd;
- __os.flags(__flags);
- __os.fill(__fill);
- __os.precision(__precision);
- return __os;
- }
- template<std::size_t _Dimen, typename _RealType, typename _CharT,
- typename _Traits>
- std::basic_istream<_CharT, _Traits>&
- operator>>(std::basic_istream<_CharT, _Traits>& __is,
- __gnu_cxx::uniform_inside_sphere_distribution<_Dimen,
- _RealType>& __x)
- {
- typedef std::basic_istream<_CharT, _Traits> __istream_type;
- typedef typename __istream_type::ios_base __ios_base;
- const typename __ios_base::fmtflags __flags = __is.flags();
- __is.flags(__ios_base::dec | __ios_base::skipws);
- _RealType __radius_val;
- __is >> __radius_val >> __x._M_uosd;
- __x.param(typename uniform_inside_sphere_distribution<_Dimen, _RealType>::
- param_type(__radius_val));
- __is.flags(__flags);
- return __is;
- }
- _GLIBCXX_END_NAMESPACE_VERSION
- } // namespace __gnu_cxx
- #endif // _EXT_RANDOM_TCC
|