Changeset 26591


Ignore:
Timestamp:
11/10/21 13:23:24 (3 years ago)
Author:
bulthuis
Message:

BUG: Try to fix bugs pseudo-random number generators

Location:
issm/trunk-jpl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/c/shared/Random/randomgenerator.h

    r26590 r26591  
    2020    double ubound;
    2121
    22     int drnd() { return( _seed = ( a * _seed + c ) % m ); }
    23 
    2422  public:
    2523
     
    3028    void seed( unsigned int s ) { _seed = s; }
    3129    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    }
    3334
    3435};
  • TabularUnified issm/trunk-jpl/src/c/solutionsequences/solutionsequence_sampling.cpp

    r26586 r26591  
    1818
    1919        /*Define seed*/
    20         rnd_normal_distribution distribution;
     20        //rnd_normal_distribution distribution;
    2121        if(seed<0){
    2222                std::random_device rd;
     
    2929                seed = seed + 783728*my_rank; // change default seed for parallel simulations (by considering an arbitrary shif based on the rank number)
    3030        }
    31         distribution.seed(seed);
     31        //distribution.seed(seed);
    3232
    3333        int        *local_indices = NULL;
     
    3838        ppf->GetLocalSize(&M);
    3939        for(int i=0;i<M;i++){
    40                 rdnumber = distribution.generator();
     40                rdnumber = 1.0;//distribution.generator();
    4141                ppf->SetValue(local_indices[i],rdnumber,INS_VAL);
    4242        }
Note: See TracChangeset for help on using the changeset viewer.