Update of /cvsroot/csp/APPLICATIONS/SimData/Include/SimData
In directory sc8-pr-cvs1:/tmp/cvs-serv7876/Include/SimData
Modified Files:
Random.h Random.i
Log Message:
Index: Random.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/Random.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Random.h 6 Aug 2003 06:36:24 -0000 1.8
--- Random.h 6 Aug 2003 08:56:54 -0000 1.9
***************
*** 142,146 ****
* Get the name of this generator
*/
! inline std::string getName() const { return "Marsenne Twister (MT19937)"; }
/**
--- 142,146 ----
* Get the name of this generator
*/
! inline std::string getName() const { return "Mersenne Twister (MT19937)"; }
/**
***************
*** 731,735 ****
namespace random { // generators and distributions
typedef RandomDistribution<rd::Gauss> Gauss;
! typedef RandomNumberGenerator<rng::MT19937> MarsenneTwister;
typedef RandomNumberGenerator<rng::Taus2> Taus2;
typedef Taus2 Standard;
--- 731,735 ----
namespace random { // generators and distributions
typedef RandomDistribution<rd::Gauss> Gauss;
! typedef RandomNumberGenerator<rng::MT19937> MersenneTwister;
typedef RandomNumberGenerator<rng::Taus2> Taus2;
typedef Taus2 Standard;
Index: Random.i
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/Random.i,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Random.i 6 Aug 2003 06:36:24 -0000 1.4
--- Random.i 6 Aug 2003 08:56:54 -0000 1.5
***************
*** 142,146 ****
};
! %template(MarsenneTwister) RandomNumberGenerator<simdata::rng::MT19937>;
%template(Taus2) RandomNumberGenerator<simdata::rng::Taus2>;
--- 142,146 ----
};
! %template(MersenneTwister) RandomNumberGenerator<simdata::rng::MT19937>;
%template(Taus2) RandomNumberGenerator<simdata::rng::Taus2>;
|