]> AND Public Git Repository - simgrid.git/blobdiff - include/xbt/random.hpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Expunge Triva from the documentation too.
[simgrid.git] / include / xbt / random.hpp
index 84e8182a3690c385207942ca6bc2aec99f2e93c0..4c3eff5d37bfdc9f0ff79ac82052ac000b8baeaf 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,14 +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