Changeset 26591 for issm/trunk-jpl/src
- Timestamp:
- 11/10/21 13:23:24 (3 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/shared/Random/randomgenerator.h
r26590 r26591 20 20 double ubound; 21 21 22 int drnd() { return( _seed = ( a * _seed + c ) % m ); }23 24 22 public: 25 23 … … 30 28 void seed( unsigned int s ) { _seed = s; } 31 29 unsigned int get_seed() { return _seed; } 32 double generator() { return (ubound-lbound)*(double) drnd()/ m + lbound; } 30 double generator(){ 31 _seed = ( a * _seed + c ) % m; 32 return (ubound-lbound)*(double) _seed/ m + lbound; 33 } 33 34 34 35 }; -
issm/trunk-jpl/src/c/solutionsequences/solutionsequence_sampling.cpp
r26586 r26591 18 18 19 19 /*Define seed*/ 20 rnd_normal_distribution distribution;20 //rnd_normal_distribution distribution; 21 21 if(seed<0){ 22 22 std::random_device rd; … … 29 29 seed = seed + 783728*my_rank; // change default seed for parallel simulations (by considering an arbitrary shif based on the rank number) 30 30 } 31 distribution.seed(seed);31 //distribution.seed(seed); 32 32 33 33 int *local_indices = NULL; … … 38 38 ppf->GetLocalSize(&M); 39 39 for(int i=0;i<M;i++){ 40 rdnumber = distribution.generator();40 rdnumber = 1.0;//distribution.generator(); 41 41 ppf->SetValue(local_indices[i],rdnumber,INS_VAL); 42 42 }
Note:
See TracChangeset
for help on using the changeset viewer.