home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / gxxinc.lzh / GXXINC / XUNIFORM.H < prev    next >
C/C++ Source or Header  |  1991-07-07  |  2KB  |  82 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2. /* 
  3. Copyright (C) 1988 Free Software Foundation
  4.     written by Dirk Grunwald (grunwald@cs.uiuc.edu)
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY.  No author or distributor
  10. accepts responsibility to anyone for the consequences of using it
  11. or for whether it serves any particular purpose or works at all,
  12. unless he says so in writing.  Refer to the GNU CC General Public
  13. License for full details.
  14.  
  15. Everyone is granted permission to copy, modify and redistribute
  16. GNU CC, but only under the conditions described in the
  17. GNU CC General Public License.   A copy of this license is
  18. supposed to have been given to you along with GNU CC so you
  19. can know your rights and responsibilities.  It should be in a
  20. file named COPYING.  Among other things, the copyright notice
  21. and this notice must be preserved on all copies.  
  22. */
  23. #ifndef _Uniform_h
  24. #ifdef __GNUG__
  25. #pragma once
  26. #pragma interface
  27. #endif
  28. #define _Uniform_h 1
  29.  
  30. #include <xrandom.h>
  31.  
  32. //
  33. //    The interval [lo..hi]
  34. // 
  35.  
  36. class Uniform: public Random {
  37.     double pLow;
  38.     double pHigh;
  39.     double delta;
  40. public:
  41.     Uniform(double low, double high, RNG *gen);
  42.  
  43.     double low();
  44.     double low(double x);
  45.     double high();
  46.     double high(double x);
  47.  
  48.     virtual double operator()();
  49. };
  50.  
  51.  
  52. #if defined(__OPTIMIZE__) || defined(USE_LIBGXX_INLINES)
  53.  
  54. inline Uniform::Uniform(double low, double high, RNG *gen):(gen)
  55. {
  56.     pLow = (low < high) ? low : high;
  57.     pHigh = (low < high) ? high : low;
  58.     delta = pHigh - pLow;
  59. }
  60.  
  61. inline double Uniform::low() { return pLow; }
  62.  
  63. inline double Uniform::low(double x) {
  64.   double tmp = pLow;
  65.   pLow = x;
  66.   delta = pHigh - pLow;
  67.   return tmp;
  68. }
  69.  
  70. inline double Uniform::high() { return pHigh; }
  71.  
  72. inline double Uniform::high(double x) {
  73.   double tmp = pHigh;
  74.   pHigh = x;
  75.   delta = pHigh - pLow;
  76.   return tmp;
  77. }
  78.  
  79.  
  80. #endif
  81. #endif
  82.