Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Adding the normal distribution
[simgrid.git] / include / xbt / random.hpp
1 /* Copyright (c) 2019. The SimGrid Team. All rights reserved.               */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_XBT_RANDOM_HPP
7 #define SIMGRID_XBT_RANDOM_HPP
8
9 #include <random>
10
11 namespace simgrid {
12 namespace xbt {
13 namespace random {
14 int uniform_int(int, int);
15 double uniform_real(double, double);
16 double exponential(double);
17 double normal(double, double);
18 } // namespace random
19 } // namespace xbt
20 } // namespace simgrid
21
22 #endif