Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Removing variable names from the header…
[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 } // namespace random
17 } // namespace xbt
18 } // namespace simgrid
19
20 #endif