Changeset 26596 for issm/trunk-jpl/src/c/shared/Random/randomgenerator.h
- Timestamp:
- 11/10/21 15:24:04 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/shared/Random/randomgenerator.h
r26595 r26596 23 23 24 24 /*constructors, destructors: */ 25 rnd_uniform_distribution() ;25 rnd_uniform_distribution() : _seed( 0 ), a( 1103515245 ), c( 12345 ), m( 2147483648 ), lbound(0.0), ubound(1.0) {} 26 26 rnd_uniform_distribution(double a_1,double a_2) : _seed( 0 ), a( 1103515245 ), c( 12345 ), m( 2147483648 ), lbound(a_1), ubound(a_2) {} 27 27 ~rnd_uniform_distribution(){}
Note:
See TracChangeset
for help on using the changeset viewer.