⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 trng.hh

📁 线程池 线程池 线程池
💻 HH
字号:
#ifndef __TRNG_HH#define __TRNG_HH////  Project   : misc//  File      : TRNG.hh//  Author    : Ronald Kriemann//  Purpose   : class for a random-number-generator////////class TRNG{protected:    // state of the RNG (624 == N from TRNG.cc)    unsigned long   _state[624];    int             _left;    unsigned long * _next;public:    ////////////////////////////////////////////    //    // constructor and destructor    //    TRNG ( unsigned long seed = 5489UL ) { if ( seed != 0 ) init( seed ); }    ////////////////////////////////////////////    //    // access rng    //    // return random number in the interval [0,max]    double rand ( double max = 1.0 );    // abbr. for rand    double operator () ( double max = 1.0 ) { return rand(max); }    // initialise rng by single seed (seed must not equal 0)    void init ( unsigned long seed );    // initialise rng by array    void init ( unsigned long init_key[], unsigned long length );protected:    // set next state in RNG    void next_state ();};#endif  // __TRANDOM_HH

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -