X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8a48b8dc92398fb5cc0a926eaa72f8ff55bdd0c6..33925fdb0f910412956d1bcf3e91987b1d3a6cf7:/include/xbt/random.hpp diff --git a/include/xbt/random.hpp b/include/xbt/random.hpp index 732644756a..b1d8b1461a 100644 --- a/include/xbt/random.hpp +++ b/include/xbt/random.hpp @@ -6,13 +6,18 @@ #ifndef SIMGRID_XBT_RANDOM_HPP #define SIMGRID_XBT_RANDOM_HPP -#include - namespace simgrid { namespace xbt { namespace random { + +void set_implem_xbt(); +void set_implem_std(); +void set_mersenne_seed(int); + int uniform_int(int, int); double uniform_real(double, double); +double exponential(double); +double normal(double, double); } // namespace random } // namespace xbt } // namespace simgrid