2012-12-01 12:32:03 -04:00
|
|
|
/****************************************************************************
|
2012-11-10 12:34:46 -04:00
|
|
|
* libc/stdlib/lib_rand.c
|
2012-11-10 12:06:01 -04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007, 2011 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2012-12-01 12:32:03 -04:00
|
|
|
****************************************************************************/
|
2012-11-10 12:06:01 -04:00
|
|
|
|
2012-12-01 12:32:03 -04:00
|
|
|
/****************************************************************************
|
2012-11-10 12:06:01 -04:00
|
|
|
* Included Files
|
2012-12-01 12:32:03 -04:00
|
|
|
****************************************************************************/
|
2012-11-10 12:06:01 -04:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2012-12-01 12:32:03 -04:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
2012-12-01 14:04:10 -04:00
|
|
|
/* First, second, and thired order congruential generators are supported */
|
2012-11-10 12:06:01 -04:00
|
|
|
|
|
|
|
#ifndef CONFIG_LIB_RAND_ORDER
|
2012-12-01 12:32:03 -04:00
|
|
|
# define CONFIG_LIB_RAND_ORDER 1
|
2012-11-10 12:06:01 -04:00
|
|
|
#endif
|
|
|
|
|
2012-12-01 14:04:10 -04:00
|
|
|
#if CONFIG_LIB_RAND_ORDER > 3
|
|
|
|
# undef CONFIG_LIB_RAND_ORDER
|
|
|
|
# define CONFIG_LIB_RAND_ORDER 3
|
|
|
|
#endif
|
|
|
|
|
2012-11-10 12:06:01 -04:00
|
|
|
/* Values needed by the random number generator */
|
|
|
|
|
|
|
|
#define RND1_CONSTK 470001
|
|
|
|
#define RND1_CONSTP 999563
|
|
|
|
#define RND2_CONSTK1 366528
|
|
|
|
#define RND2_CONSTK2 508531
|
|
|
|
#define RND2_CONSTP 998917
|
|
|
|
#define RND3_CONSTK1 360137
|
|
|
|
#define RND3_CONSTK2 519815
|
|
|
|
#define RND3_CONSTK3 616087
|
|
|
|
#define RND3_CONSTP 997783
|
|
|
|
|
2012-12-01 12:32:03 -04:00
|
|
|
/****************************************************************************
|
2012-11-10 12:06:01 -04:00
|
|
|
* Private Function Prototypes
|
2012-12-01 12:32:03 -04:00
|
|
|
****************************************************************************/
|
2012-11-10 12:06:01 -04:00
|
|
|
|
|
|
|
static unsigned int nrand(unsigned int nLimit);
|
2012-12-01 14:04:10 -04:00
|
|
|
|
|
|
|
/* First order congruential generators */
|
|
|
|
|
2012-12-07 12:00:56 -04:00
|
|
|
static inline unsigned long fgenerate1(void);
|
2012-12-01 14:04:10 -04:00
|
|
|
#if (CONFIG_LIB_RAND_ORDER == 1)
|
2012-11-10 12:06:01 -04:00
|
|
|
static double_t frand1(void);
|
2012-12-01 14:04:10 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Second order congruential generators */
|
|
|
|
|
2012-11-10 12:06:01 -04:00
|
|
|
#if (CONFIG_LIB_RAND_ORDER > 1)
|
2012-12-07 12:00:56 -04:00
|
|
|
static inline unsigned long fgenerate2(void);
|
2012-12-01 14:04:10 -04:00
|
|
|
#if (CONFIG_LIB_RAND_ORDER == 2)
|
2012-11-10 12:06:01 -04:00
|
|
|
static double_t frand2(void);
|
2012-12-01 14:04:10 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Third order congruential generators */
|
|
|
|
|
2012-11-10 12:06:01 -04:00
|
|
|
#if (CONFIG_LIB_RAND_ORDER > 2)
|
2012-12-07 12:00:56 -04:00
|
|
|
static inline unsigned long fgenerate3(void);
|
2012-11-10 12:06:01 -04:00
|
|
|
static double_t frand3(void);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-12-01 12:32:03 -04:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Data
|
|
|
|
****************************************************************************/
|
2012-11-10 12:06:01 -04:00
|
|
|
|
2012-12-01 12:32:03 -04:00
|
|
|
static unsigned long g_randint1;
|
2012-11-10 12:06:01 -04:00
|
|
|
#if (CONFIG_LIB_RAND_ORDER > 1)
|
2012-12-01 12:32:03 -04:00
|
|
|
static unsigned long g_randint2;
|
2012-11-10 12:06:01 -04:00
|
|
|
#if (CONFIG_LIB_RAND_ORDER > 2)
|
2012-12-01 12:32:03 -04:00
|
|
|
static unsigned long g_randint3;
|
2012-11-10 12:06:01 -04:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-12-01 12:32:03 -04:00
|
|
|
/****************************************************************************
|
2012-11-10 12:06:01 -04:00
|
|
|
* Private Functions
|
2012-12-01 12:32:03 -04:00
|
|
|
****************************************************************************/
|
|
|
|
|
2012-11-10 12:06:01 -04:00
|
|
|
static unsigned int nrand(unsigned int nLimit)
|
|
|
|
{
|
2012-12-01 12:32:03 -04:00
|
|
|
unsigned long result;
|
|
|
|
double_t ratio;
|
2012-11-10 12:06:01 -04:00
|
|
|
|
|
|
|
/* Loop to be sure a legal random number is generated */
|
|
|
|
|
2012-12-01 12:32:03 -04:00
|
|
|
do
|
|
|
|
{
|
|
|
|
/* Get a random integer in the requested range */
|
|
|
|
|
2012-11-10 12:06:01 -04:00
|
|
|
#if (CONFIG_LIB_RAND_ORDER == 1)
|
2012-12-01 12:32:03 -04:00
|
|
|
ratio = frand1();
|
2012-11-10 12:06:01 -04:00
|
|
|
#elif (CONFIG_LIB_RAND_ORDER == 2)
|
2012-12-01 12:32:03 -04:00
|
|
|
ratio = frand2();
|
2012-12-01 14:04:10 -04:00
|
|
|
#else /* if (CONFIG_LIB_RAND_ORDER > 2) */
|
2012-12-01 12:32:03 -04:00
|
|
|
ratio = frand3();
|
2012-11-10 12:06:01 -04:00
|
|
|
#endif
|
|
|
|
|
2012-12-01 12:32:03 -04:00
|
|
|
/* Then, produce the return-able value */
|
2012-11-10 12:06:01 -04:00
|
|
|
|
2012-12-01 12:32:03 -04:00
|
|
|
result = (unsigned long)(((double_t)nLimit) * ratio);
|
|
|
|
}
|
|
|
|
while (result >= (unsigned long)nLimit);
|
2012-11-10 12:06:01 -04:00
|
|
|
|
2012-12-01 12:32:03 -04:00
|
|
|
return (unsigned int)result;
|
|
|
|
}
|
2012-11-10 12:06:01 -04:00
|
|
|
|
2012-12-01 14:04:10 -04:00
|
|
|
/* First order congruential generators */
|
|
|
|
|
2012-12-07 12:00:56 -04:00
|
|
|
static inline unsigned long fgenerate1(void)
|
2012-11-10 12:06:01 -04:00
|
|
|
{
|
2012-12-01 12:32:03 -04:00
|
|
|
unsigned long randint;
|
|
|
|
|
2012-12-01 14:04:10 -04:00
|
|
|
/* First order congruential generator. One may be added to the result of the
|
|
|
|
* generated value to avoid the value zero. This would be fatal for the
|
|
|
|
* first order random number generator.
|
2012-12-01 12:32:03 -04:00
|
|
|
*/
|
2012-11-10 12:06:01 -04:00
|
|
|
|
2012-12-01 14:04:10 -04:00
|
|
|
randint = (RND1_CONSTK * g_randint1) % RND1_CONSTP;
|
|
|
|
g_randint1 = (randint == 0 ? 1 : randint);
|
2012-12-07 12:00:56 -04:00
|
|
|
return randint;
|
2012-12-01 14:04:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#if (CONFIG_LIB_RAND_ORDER == 1)
|
|
|
|
static double_t frand1(void)
|
|
|
|
{
|
|
|
|
/* First order congruential generator. */
|
|
|
|
|
2012-12-07 12:00:56 -04:00
|
|
|
unsigned long randint = fgenerate1();
|
2012-11-10 12:06:01 -04:00
|
|
|
|
|
|
|
/* Construct an floating point value in the range from 0.0 up to 1.0 */
|
|
|
|
|
2012-12-07 12:00:56 -04:00
|
|
|
return ((double_t)randint) / ((double_t)RND1_CONSTP);
|
2012-12-01 12:32:03 -04:00
|
|
|
}
|
2012-12-01 14:04:10 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Second order congruential generators */
|
2012-11-10 12:06:01 -04:00
|
|
|
|
|
|
|
#if (CONFIG_LIB_RAND_ORDER > 1)
|
2012-12-07 12:00:56 -04:00
|
|
|
static inline unsigned long fgenerate2(void)
|
2012-11-10 12:06:01 -04:00
|
|
|
{
|
2012-12-01 12:32:03 -04:00
|
|
|
unsigned long randint;
|
2012-11-10 12:06:01 -04:00
|
|
|
|
2012-12-02 13:34:08 -04:00
|
|
|
/* Second order congruential generator. */
|
2012-12-01 12:32:03 -04:00
|
|
|
|
|
|
|
randint = (RND2_CONSTK1 * g_randint1 +
|
2012-12-01 14:44:57 -04:00
|
|
|
RND2_CONSTK2 * g_randint2) % RND2_CONSTP;
|
2012-12-01 12:32:03 -04:00
|
|
|
|
|
|
|
g_randint2 = g_randint1;
|
2012-12-02 13:34:08 -04:00
|
|
|
g_randint1 = randint;
|
|
|
|
|
|
|
|
/* We cannot permit both values to become zero. That would be fatal for the
|
|
|
|
* second order random number generator.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (g_randint2 == 0 && g_randint1 == 0)
|
|
|
|
{
|
|
|
|
g_randint2 = 1;
|
|
|
|
}
|
2012-12-07 12:00:56 -04:00
|
|
|
|
|
|
|
return randint;
|
2012-12-01 14:04:10 -04:00
|
|
|
}
|
2012-11-10 12:06:01 -04:00
|
|
|
|
2012-12-01 14:04:10 -04:00
|
|
|
#if (CONFIG_LIB_RAND_ORDER == 2)
|
|
|
|
static double_t frand2(void)
|
|
|
|
{
|
|
|
|
/* Second order congruential generator */
|
2012-11-10 12:06:01 -04:00
|
|
|
|
2012-12-07 12:00:56 -04:00
|
|
|
unsigned long randint = fgenerate2();
|
2012-12-01 12:32:03 -04:00
|
|
|
|
2012-12-01 14:04:10 -04:00
|
|
|
/* Construct an floating point value in the range from 0.0 up to 1.0 */
|
|
|
|
|
2012-12-07 12:00:56 -04:00
|
|
|
return ((double_t)randint) / ((double_t)RND2_CONSTP);
|
2012-12-01 12:32:03 -04:00
|
|
|
}
|
2012-12-01 14:04:10 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Third order congruential generators */
|
2012-11-10 12:06:01 -04:00
|
|
|
|
|
|
|
#if (CONFIG_LIB_RAND_ORDER > 2)
|
2012-12-07 12:00:56 -04:00
|
|
|
static inline unsigned long fgenerate3(void)
|
2012-11-10 12:06:01 -04:00
|
|
|
{
|
2012-12-01 12:32:03 -04:00
|
|
|
unsigned long randint;
|
|
|
|
|
2012-12-02 13:34:08 -04:00
|
|
|
/* Third order congruential generator. */
|
2012-12-01 12:32:03 -04:00
|
|
|
|
|
|
|
randint = (RND3_CONSTK1 * g_randint1 +
|
|
|
|
RND3_CONSTK2 * g_randint2 +
|
2012-12-01 14:44:57 -04:00
|
|
|
RND3_CONSTK2 * g_randint3) % RND3_CONSTP;
|
2012-11-10 12:06:01 -04:00
|
|
|
|
2012-12-01 12:32:03 -04:00
|
|
|
g_randint3 = g_randint2;
|
|
|
|
g_randint2 = g_randint1;
|
2012-12-02 13:34:08 -04:00
|
|
|
g_randint1 = randint;
|
|
|
|
|
|
|
|
/* We cannot permit all three values to become zero. That would be fatal for the
|
|
|
|
* third order random number generator.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (g_randint3 == 0 && g_randint2 == 0 && g_randint1 == 0)
|
|
|
|
{
|
|
|
|
g_randint3 = 1;
|
|
|
|
}
|
2012-12-07 12:00:56 -04:00
|
|
|
|
|
|
|
return randint;
|
2012-12-01 14:04:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static double_t frand3(void)
|
|
|
|
{
|
|
|
|
/* Third order congruential generator */
|
|
|
|
|
2012-12-07 12:00:56 -04:00
|
|
|
unsigned long randint = fgenerate3();
|
2012-11-10 12:06:01 -04:00
|
|
|
|
|
|
|
/* Construct an floating point value in the range from 0.0 up to 1.0 */
|
|
|
|
|
2012-12-07 12:00:56 -04:00
|
|
|
return ((double_t)randint) / ((double_t)RND3_CONSTP);
|
2012-12-01 12:32:03 -04:00
|
|
|
}
|
2012-11-10 12:06:01 -04:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-12-01 12:32:03 -04:00
|
|
|
/****************************************************************************
|
2012-11-10 12:06:01 -04:00
|
|
|
* Public Functions
|
2012-12-01 12:32:03 -04:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2012-11-10 12:06:01 -04:00
|
|
|
* Function: srand, rand
|
2012-12-01 12:32:03 -04:00
|
|
|
****************************************************************************/
|
2012-11-10 12:06:01 -04:00
|
|
|
|
|
|
|
void srand(unsigned int seed)
|
|
|
|
{
|
2012-12-01 12:32:03 -04:00
|
|
|
g_randint1 = seed;
|
2012-11-10 12:06:01 -04:00
|
|
|
#if (CONFIG_LIB_RAND_ORDER > 1)
|
2012-12-01 12:32:03 -04:00
|
|
|
g_randint2 = seed;
|
2012-12-07 12:00:56 -04:00
|
|
|
(void)fgenerate1();
|
2012-11-10 12:06:01 -04:00
|
|
|
#if (CONFIG_LIB_RAND_ORDER > 2)
|
2012-12-01 12:32:03 -04:00
|
|
|
g_randint3 = seed;
|
2012-12-07 12:00:56 -04:00
|
|
|
(void)fgenerate2();
|
2012-11-10 12:06:01 -04:00
|
|
|
#endif
|
|
|
|
#endif
|
2012-12-01 12:32:03 -04:00
|
|
|
}
|
2012-11-10 12:06:01 -04:00
|
|
|
|
|
|
|
int rand(void)
|
|
|
|
{
|
|
|
|
return (int)nrand(32768);
|
2012-12-01 12:32:03 -04:00
|
|
|
}
|