00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #include <cmath>
00033 #include <iostream>
00034 #include <cstdlib>
00035
00036 #include "Sacado_Random.hpp"
00037
00038 Sacado::Random::Random(double a_, double b_) :
00039 a(a_),
00040 b(b_),
00041 seed(static_cast<double>(rand()))
00042 {
00043
00044 if ((seed == 0.0) || (seed == 2147483647.0))
00045 seed = 1.0;
00046 }
00047
00048 Sacado::Random::Random(double a_, double b_, int s) :
00049 a(a_),
00050 b(b_),
00051 seed(0.0)
00052 {
00053 setSeed(s);
00054 }
00055
00056 Sacado::Random::~Random()
00057 {
00058 }
00059
00060 void
00061 Sacado::Random::setSeed(int s) {
00062 int ss = checkSeed("setSeed", s);
00063 srand(ss);
00064 seed = static_cast<double>(s);
00065 }
00066
00067 double
00068 Sacado::Random::number() {
00069 const double A = 16807.0;
00070 const double bigInt = 2147483647.0;
00071
00072 seed = std::fmod(A*seed, bigInt);
00073 return (b-a)*(seed/bigInt) + a;
00074 }
00075
00076 int
00077 Sacado::Random::checkSeed(const std::string& func, int s) {
00078 if ((s < 1) || (s > 2147483646)) {
00079 std::cerr << "Error in Sacado::Random::" << s << "(): "
00080 << "supplied seed "
00081 << s << " is not an integer between 1 and 2147483646."
00082 << std::endl << "Using a seed of 1 instead." << std::endl;
00083 return 1;
00084 }
00085 else
00086 return s;
00087 }