Show
Ignore:
Timestamp:
10/15/09 00:10:19 (15 years ago)
Author:
smidl
Message:

doc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/itpp_ext.cpp

    r622 r661  
    115115} 
    116116 
    117 //#if 0 
     117#if 0 
    118118Gamma_RNG::Gamma_RNG (double a, double b) 
    119119{ 
     
    317317} 
    318318 
    319 //#endif 
     319#endif 
    320320std::string num2str (double d) 
    321321{ 
     
    394394} 
    395395 
     396//! Storage of randun() internals 
    396397class RandunStorage 
    397398{ 
     
    402403        public: 
    403404                RandunStorage() : A (16807), M (2147483647) {}; 
     405                //!set seed of the randun() generator 
    404406                void set_seed (double seed0) {seed = seed0;} 
     407                //! generate randun() sample 
    405408                double get() { 
    406409                        long long tmp = A * seed;