Changeset 308
- Timestamp:
- May 3, 2005, 8:22:00 PM (18 years ago)
- Location:
- trunk/lib/utility
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/utility/random_singleton.cc
r301 r308 32 32 33 33 34 // Functions (A-Z)35 //////////////////36 34 void random_singleton::set_seed( const int& seed ) 37 35 { … … 57 55 } 58 56 57 /** 58 double random_singleton::get_poisson(const double m) const 59 { 60 61 } 62 */ 63 59 64 }} // of namespace utility and namespace theplu -
trunk/lib/utility/random_singleton.h
r303 r308 91 91 92 92 93 /** 94 See get_uniform_int()! 93 /// 94 /// @brief random number from Poisson distribution 95 /// @todo 96 inline u_int get_poisson(const double m) const 97 { return gsl_ran_poisson(r_, m); } 98 99 /** 100 @See get_uniform_int()! 95 101 */ 96 102 inline u_long get_uniform_min() const; … … 98 104 99 105 /** 100 See get_uniform_int()!106 @See get_uniform_int()! 101 107 */ 102 108 inline u_long get_uniform_max() const;
Note: See TracChangeset
for help on using the changeset viewer.