Changeset 26599
- Timestamp:
- 11/10/21 18:02:21 (3 years ago)
- Location:
- issm/trunk-jpl/src/c/shared/Random
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/shared/Random/randomgenerator.cpp
r26598 r26599 8 8 #undef M_PI 9 9 #define M_PI 3.141592653589793238462643 10 11 rnd_uniform_distribution::rnd_uniform_distribution(){/*{{{*/ 12 13 a = 1103515245; // BSD Formula 14 c = 12345; // BSD Formula 15 m = 2147483648; // BSD Formula 16 _seed = 0; 17 lbound = 0.0; 18 ubound = 1.0; 19 return; 20 } 21 /*}}}*/ -
issm/trunk-jpl/src/c/shared/Random/randomgenerator.h
r26598 r26599 28 28 29 29 /*constructors, destructors: */ 30 rnd_uniform_distribution() : _seed( 0 ), a( 1103515245 ), c( 12345 ), m( 2147483648 ), lbound(0.0), ubound(1.0) {}30 rnd_uniform_distribution(); 31 31 rnd_uniform_distribution(double a_1,double a_2) : _seed( 0 ), a( 1103515245 ), c( 12345 ), m( 2147483648 ), lbound(a_1), ubound(a_2) {} 32 32 ~rnd_uniform_distribution(){}
Note:
See TracChangeset
for help on using the changeset viewer.