Sacado_Random.cpp

Go to the documentation of this file.
00001 // $Id: Sacado_Random.cpp,v 1.7 2008/06/06 15:50:05 jmwille Exp $ 
00002 // $Source: /space/CVS/Trilinos/packages/sacado/test/utils/Sacado_Random.cpp,v $ 
00003 // @HEADER
00004 // ***********************************************************************
00005 // 
00006 //                           Sacado Package
00007 //                 Copyright (2006) Sandia Corporation
00008 // 
00009 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
00010 // the U.S. Government retains certain rights in this software.
00011 // 
00012 // This library is free software; you can redistribute it and/or modify
00013 // it under the terms of the GNU Lesser General Public License as
00014 // published by the Free Software Foundation; either version 2.1 of the
00015 // License, or (at your option) any later version.
00016 //  
00017 // This library is distributed in the hope that it will be useful, but
00018 // WITHOUT ANY WARRANTY; without even the implied warranty of
00019 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00020 // Lesser General Public License for more details.
00021 //  
00022 // You should have received a copy of the GNU Lesser General Public
00023 // License along with this library; if not, write to the Free Software
00024 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
00025 // USA
00026 // Questions? Contact David M. Gay (dmgay@sandia.gov) or Eric T. Phipps
00027 // (etphipp@sandia.gov).
00028 // 
00029 // ***********************************************************************
00030 // @HEADER
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   // rand() can return 0 or 2147483647, so adjust seed if that happens
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 }

Generated on Wed May 12 21:59:05 2010 for Sacado Package Browser (Single Doxygen Collection) by  doxygen 1.4.7