1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
/* Copyright (c) 2019-2025. The SimGrid Team. All rights reserved. */
/* This program is free software; you can redistribute it and/or modify it
* under the terms of the license (GNU LGPL) which comes with this package. */
#ifndef SIMGRID_XBT_RANDOM_HPP
#define SIMGRID_XBT_RANDOM_HPP
#include "xbt/base.h"
#include <fstream>
#include <iostream>
#include <random>
#include <string>
namespace simgrid::xbt::random {
/** A random number generator.
*
* It uses a std::mersenne_twister_engine (std::mt19937) and provides several distributions.
* This interface is implemented by StdRandom and XbtRandom.
*/
class XBT_PUBLIC Random {
public:
std::mt19937 mt19937_gen; // the random number engine
/** @brief Build a new random number generator with default seed */
Random() = default;
/** @brief Build a new random number generator with given seed */
explicit Random(int seed) : mt19937_gen(seed) {}
virtual ~Random() = default;
/**
* @brief Sets the seed of the Mersenne-Twister RNG
*/
void set_seed(int seed) { mt19937_gen.seed(seed); }
/**
* @brief Read the state of the Mersenne-Twister RNG from a file
*/
bool read_state(const std::string& filename);
/**
* @brief Write the state of the Mersenne-Twister RNG to a file
*/
bool write_state(const std::string& filename) const;
/**
* @brief Draws an integer number uniformly in range [min, max] (min and max included)
*
* @param min Minimum value
* @param max Maximum value
*/
virtual int uniform_int(int min, int max) = 0;
/**
* @brief Draws a real number uniformly in range [min, max) (min included, and max excluded)
*
* @param min Minimum value
* @param max Maximum value
*/
virtual double uniform_real(double min, double max) = 0;
/**
* @brief Draws a real number according to the given exponential distribution
*
* @param lambda Parameter of the exponential law
*/
virtual double exponential(double lambda) = 0;
/**
* @brief Draws a real number according to the given normal distribution
*
* @param mean Mean of the normal distribution
* @param sd Standard deviation of the normal distribution
*/
virtual double normal(double mean, double sd) = 0;
};
/** A random number generator using the C++ standard library.
*
* Caution: reproducibility is not guaranteed across different implementations.
*/
class XBT_PUBLIC StdRandom : public Random {
public:
using Random::Random;
int uniform_int(int min, int max) override;
double uniform_real(double min, double max) override;
double exponential(double lambda) override;
double normal(double mean, double sd) override;
};
/** A reproducible random number generator.
*
* Uses our own implementation of distributions to ensure reproducibility.
*/
class XBT_PUBLIC XbtRandom : public Random {
public:
using Random::Random;
int uniform_int(int min, int max) override;
double uniform_real(double min, double max) override;
double exponential(double lambda) override;
double normal(double mean, double sd) override;
};
/**
* @brief Tells xbt/random to use the ad-hoc distribution implementation.
*/
void set_implem_xbt();
/**
* @brief Tells xbt/random to use the standard library distribution implementation.
*/
void set_implem_std();
/**
* @brief Sets the seed of the Mersenne-Twister RNG
*/
void set_mersenne_seed(int);
/**
* @brief Read the state of the Mersenne-Twister RNG from a file.
*/
bool read_mersenne_state(const std::string& filename);
/**
* @brief Write the state of the Mersenne-Twister RNG to a file.
*/
bool write_mersenne_state(const std::string& filename);
/**
* @brief Draws an integer number uniformly in range [min, max] (min and max included)
*
* @param min Minimum value
* @param max Maximum value
*/
int uniform_int(int min, int max);
/**
* @brief Draws a real number uniformly in range [min, max) (min included, and max excluded)
*
* @param min Minimum value
* @param max Maximum value
*/
double uniform_real(double min, double max);
/**
* @brief Draws a real number according to the given exponential distribution
*
* @param lambda Parameter of the exponential law
*/
double exponential(double lambda);
/**
* @brief Draws a real number according to the given normal distribution
*
* @param mean Mean of the normal distribution
* @param sd Standard deviation of the normal distribution
*/
double normal(double mean, double sd);
} // namespace simgrid::xbt::random
#endif
|