Changeset 26594


Ignore:
Timestamp:
11/10/21 14:44:47 (3 years ago)
Author:
bulthuis
Message:

BUG: Try to fix bugs pseudo-random number 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

    r26593 r26594  
    55#include <iostream>
    66#include "./randomgenerator.h"
    7 
    8 
    9 rnd_uniform_distribution::~rnd_uniform_distribution(){}
    10 
    11 rnd_normal_distribution::~rnd_normal_distribution(){}
  • issm/trunk-jpl/src/c/shared/Random/randomgenerator.h

    r26593 r26594  
    2525    rnd_uniform_distribution() : _seed( 0 ), a( 1103515245 ), c( 12345 ), m( 2147483648 ), lbound(0.0), ubound(1.0) {}
    2626    rnd_uniform_distribution(double a_1,double a_2) : _seed( 0 ), a( 1103515245 ), c( 12345 ), m( 2147483648 ), lbound(a_1), ubound(a_2) {}
    27     ~rnd_uniform_distribution();
    28    
     27    ~rnd_uniform_distribution(){}
     28
    2929    void seed( unsigned int s ) { _seed = s; }
    3030    unsigned int get_seed() { return _seed; }
     
    4949    rnd_normal_distribution() : _seed( 0 ), mean( 0), sdev(1.0) {}
    5050    rnd_normal_distribution(double m,double s) : _seed( 0 ), mean( m ), sdev(s) {}
    51     ~rnd_normal_distribution();
     51    ~rnd_normal_distribution(){}
    5252
    5353    void seed( unsigned int s ) { _seed = s; }
Note: See TracChangeset for help on using the changeset viewer.