NEST
2.6.0,not_revisioned_source_dir@0
|
Class UniformRandomDev Create uniformly distributed random numbers in [low, high). More...
#include <uniform_randomdev.h>
Public Member Functions | |
UniformRandomDev (RngPtr r_in) | |
UniformRandomDev () | |
double | operator() (RngPtr rthrd) const |
multi-threaded More... | |
void | set_status (const DictionaryDatum &) |
set distribution parameters from SLI dict More... | |
void | get_status (DictionaryDatum &) const |
get distribution parameters from SLI dict More... | |
Public Member Functions inherited from librandom::RandomDev | |
RandomDev (RngPtr rng=RngPtr(0)) | |
Construct with (single-threaded) or without (multithreaded) RNG. More... | |
virtual | ~RandomDev () |
ensure proper clean-up More... | |
virtual double | operator() (void) |
Operator delivering doubles. More... | |
virtual long | ldev (void) |
integer valued functions for discrete distributions More... | |
virtual long | ldev (RngPtr) const |
virtual bool | has_ldev () const |
true if RDG implements ldev function More... | |
void | set_rng (RngPtr rng) |
set RNG More... | |
Private Attributes | |
double | low_ |
lower bound, included More... | |
double | high_ |
upper bound, excluded More... | |
double | delta_ |
interval width More... | |
Additional Inherited Members | |
Protected Attributes inherited from librandom::RandomDev | |
RngPtr | rng_ |
store underlying RNG More... | |
Class UniformRandomDev Create uniformly distributed random numbers in [low, high).
librandom::UniformRandomDev::UniformRandomDev | ( | RngPtr | r_in | ) |
librandom::UniformRandomDev::UniformRandomDev | ( | ) |
|
virtual |
get distribution parameters from SLI dict
Implements librandom::RandomDev.
References nest::names::d.
|
inlinevirtual |
|
virtual |
set distribution parameters from SLI dict
Implements librandom::RandomDev.
References nest::names::d.
|
private |
interval width
Referenced by operator()().
|
private |
upper bound, excluded
|
private |
lower bound, included
Referenced by operator()().