Sacado_Random.cpp

Go to the documentation of this file.
00001 // $Id: Sacado_Random.cpp,v 1.5.2.1 2007/07/24 00:10:08 etphipp 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 
00035 #include "Sacado_Random.hpp"
00036 
00037 Sacado::Random::Random(double a_, double b_) :
00038   a(a_),
00039   b(b_),
00040   seed(static_cast<double>(rand()))
00041 {
00042   // rand() can return 0 or 2147483647, so adjust seed if that happens
00043   if ((seed == 0.0) || (seed == 2147483647.0))
00044     seed = 1.0;
00045 }
00046 
00047 Sacado::Random::Random(double a_, double b_, int s) :
00048   a(a_),
00049   b(b_),
00050   seed(0.0)
00051 {
00052   setSeed(s);
00053 }
00054 
00055 Sacado::Random::~Random()
00056 {
00057 }
00058 
00059 void
00060 Sacado::Random::setSeed(int s) {
00061   int ss = checkSeed("setSeed", s);
00062   srand(ss);
00063   seed = static_cast<double>(s);
00064 }
00065 
00066 double
00067 Sacado::Random::number() {
00068   const double A = 16807.0;
00069   const double bigInt = 2147483647.0;
00070       
00071   seed = std::fmod(A*seed, bigInt);
00072   return (b-a)*(seed/bigInt) + a;
00073 }
00074 
00075 int
00076 Sacado::Random::checkSeed(const std::string& func, int s) {
00077   if ((s < 1) || (s > 2147483646)) {
00078     std::cerr << "Error in Sacado::Random::" << s << "():  " 
00079         << "supplied seed " 
00080         << s << " is not an integer between 1 and 2147483646." 
00081         << std::endl << "Using a seed of 1 instead." << std::endl;
00082     return 1;
00083   }
00084   else
00085     return s;
00086 }

Generated on Tue Oct 20 12:55:06 2009 for Sacado Package Browser (Single Doxygen Collection) by doxygen 1.4.7