Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
start documenting Hosts in the new way
[simgrid.git] / include / xbt / random.hpp
index 7326447..4c3eff5 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2019. The SimGrid Team. All rights reserved.               */
+/* Copyright (c) 2019-2020. 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. */
@@ -6,13 +6,18 @@
 #ifndef SIMGRID_XBT_RANDOM_HPP
 #define SIMGRID_XBT_RANDOM_HPP
 
-#include <random>
-
 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