Changeset 26599


Ignore:
Timestamp:
11/10/21 18:02:21 (3 years ago)
Author:
bulthuis
Message:

CHG: a few changes for random generators

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  
    88#undef M_PI
    99#define M_PI 3.141592653589793238462643
     10
     11rnd_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  
    2828
    2929    /*constructors, destructors: */
    30     rnd_uniform_distribution() : _seed( 0 ), a( 1103515245 ), c( 12345 ), m( 2147483648 ), lbound(0.0), ubound(1.0) {}
     30    rnd_uniform_distribution();
    3131    rnd_uniform_distribution(double a_1,double a_2) : _seed( 0 ), a( 1103515245 ), c( 12345 ), m( 2147483648 ), lbound(a_1), ubound(a_2) {}
    3232    ~rnd_uniform_distribution(){}
Note: See TracChangeset for help on using the changeset viewer.