llrand.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:4k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llrand.h
  3.  * @brief Information, functions, and typedefs for randomness.
  4.  *
  5.  * $LicenseInfo:firstyear=2000&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2000-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_LLRAND_H
  33. #define LL_LLRAND_H
  34. #include <boost/random/lagged_fibonacci.hpp>
  35. #include <boost/random/mersenne_twister.hpp>
  36. /**
  37.  * Use the boost random number generators if you want a stateful
  38.  * random numbers. If you want more random numbers, use the
  39.  * c-functions since they will generate faster/better randomness
  40.  * across the process.
  41.  *
  42.  * I tested some of the boost random engines, and picked a good double
  43.  * generator and a good integer generator. I also took some timings
  44.  * for them on linux using gcc 3.3.5. The harness also did some other
  45.  * fairly trivial operations to try to limit compiler optimizations,
  46.  * so these numbers are only good for relative comparisons.
  47.  *
  48.  * usec/inter algorithm
  49.  * 0.21 boost::minstd_rand0
  50.  * 0.039 boost:lagged_fibonacci19937
  51.  * 0.036 boost:lagged_fibonacci607
  52.  * 0.44 boost::hellekalek1995
  53.  * 0.44 boost::ecuyer1988
  54.  * 0.042 boost::rand48
  55.  * 0.043 boost::mt11213b
  56.  * 0.028 stdlib random() 
  57.  * 0.05 stdlib lrand48()
  58.  * 0.034 stdlib rand()
  59.  * 0.020 the old & lame LLRand
  60.  */
  61. /**
  62.  *@brief Generate a float from [0, RAND_MAX).
  63.  */
  64. S32 LL_COMMON_API ll_rand();
  65. /**
  66.  *@brief Generate a float from [0, val) or (val, 0].
  67.  */
  68. S32 LL_COMMON_API ll_rand(S32 val);
  69. /**
  70.  *@brief Generate a float from [0, 1.0).
  71.  */
  72. F32 LL_COMMON_API ll_frand();
  73. /**
  74.  *@brief Generate a float from [0, val) or (val, 0].
  75.  */
  76. F32 LL_COMMON_API ll_frand(F32 val);
  77. /**
  78.  *@brief Generate a double from [0, 1.0).
  79.  */
  80. F64 LL_COMMON_API ll_drand();
  81. /**
  82.  *@brief Generate a double from [0, val) or (val, 0].
  83.  */
  84. F64 LL_COMMON_API ll_drand(F64 val);
  85. /**
  86.  * @brief typedefs for good boost lagged fibonacci.
  87.  * @see boost::lagged_fibonacci
  88.  *
  89.  * These generators will quickly generate doubles. Note the memory
  90.  * requirements, because they are somewhat high. I chose the smallest
  91.  * one, and one comparable in speed but higher periodicity without
  92.  * outrageous memory requirements.
  93.  * To use:
  94.  *  LLRandLagFib607 foo((U32)time(NULL));
  95.  *  double bar = foo();
  96.  */
  97. typedef boost::lagged_fibonacci607 LLRandLagFib607;
  98. /**< 
  99.  * lengh of cycle: 2^32,000
  100.  * memory: 607*sizeof(double) (about 5K)
  101.  */
  102. typedef boost::lagged_fibonacci2281 LLRandLagFib2281;
  103. /**< 
  104.  * lengh of cycle: 2^120,000
  105.  * memory: 2281*sizeof(double) (about 17K)
  106.  */
  107. /**
  108.  * @breif typedefs for a good boost mersenne twister implementation.
  109.  * @see boost::mersenne_twister
  110.  *
  111.  * This fairly quickly generates U32 values
  112.  * To use:
  113.  *  LLRandMT19937 foo((U32)time(NULL));
  114.  *  U32 bar = foo();
  115.  *
  116.  * lengh of cycle: 2^19,937-1
  117.  * memory: about 2496 bytes
  118.  */
  119. typedef boost::mt11213b LLRandMT19937;
  120. #endif