#include <newran.h>
Inheritance diagram for DividedRandom:
Public Member Functions | |
Real | Next () |
ExtReal | Mean () const |
ExtReal | Variance () const |
Private Member Functions | |
DividedRandom (Random &rv1x, Random &rv2x) | |
Friends | |
DividedRandom & | operator/ (Random &, Random &) |
|
Definition at line 529 of file newran.h.
00530 : MultipliedRandom(rv1x, rv2x) {} |
|
Reimplemented from MultipliedRandom. Definition at line 534 of file newran.h. References Missing.
00534 { return Missing; } |
|
Reimplemented from MultipliedRandom. Definition at line 792 of file newran.cpp. References Random::Next(), Real, MultipliedRandom::rv1, and MultipliedRandom::rv2.
|
|
Reimplemented from MultipliedRandom. Definition at line 535 of file newran.h. References Missing.
00535 { return Missing; } |
|
Definition at line 745 of file newran.cpp.
00746 { 00747 DividedRandom* r = new DividedRandom(rv1, rv2); 00748 if (!r) ErrorNoSpace(); return *r; 00749 } |