Changeset 26595
- Timestamp:
- 11/10/21 15:09:47 (3 years ago)
- Location:
- issm/trunk-jpl/src/c/shared/Random
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/c/shared/Random/randomgenerator.cpp ¶
r26594 r26595 5 5 #include <iostream> 6 6 #include "./randomgenerator.h" 7 8 #undef M_PI 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 /*}}}*/ -
TabularUnified issm/trunk-jpl/src/c/shared/Random/randomgenerator.h ¶
r26594 r26595 3 3 */ 4 4 5 #ifndef _RANDOMGENERATOR_H_6 #define _RANDOMGENERATOR_H_5 //#ifndef _RANDOMGENERATOR_H_ 6 //#define _RANDOMGENERATOR_H_ 7 7 8 8 #undef M_PI … … 23 23 24 24 /*constructors, destructors: */ 25 rnd_uniform_distribution() : _seed( 0 ), a( 1103515245 ), c( 12345 ), m( 2147483648 ), lbound(0.0), ubound(1.0) {}25 rnd_uniform_distribution(); 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(){} … … 71 71 }; 72 72 73 #endif //ifndef _RANDOMGENERATOR_H_73 //#endif //ifndef _RANDOMGENERATOR_H_
Note:
See TracChangeset
for help on using the changeset viewer.