X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5089a0a98b27f5eeee62321dff4f025f1648f025..3f07e4af25975038f6a91b2ad1c7dba21ef86a65:/include/xbt/random.hpp diff --git a/include/xbt/random.hpp b/include/xbt/random.hpp index 3ca1db16e5..4c3eff5d37 100644 --- a/include/xbt/random.hpp +++ b/include/xbt/random.hpp @@ -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,16 +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); -void set_mersenne_seed(int); } // namespace random } // namespace xbt } // namespace simgrid