X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f8abe8974ac5f49ab6282c4584899333dd9611a6..647a6e65f7e55174c44e2fe40576a86bb8fb738c:/src/xbt/random_test.cpp diff --git a/src/xbt/random_test.cpp b/src/xbt/random_test.cpp index faffe9d721..d8cee2232a 100644 --- a/src/xbt/random_test.cpp +++ b/src/xbt/random_test.cpp @@ -6,16 +6,36 @@ #include "src/include/catch.hpp" #include "xbt/log.h" #include "xbt/random.hpp" +#include TEST_CASE("xbt::random: Random Number Generation") { - SECTION("Random") + SECTION("Using XBT_RNG_xbt") { simgrid::xbt::random::set_mersenne_seed(12345); REQUIRE(simgrid::xbt::random::exponential(25) == 0.00291934351538427348); - REQUIRE(simgrid::xbt::random::uniform_int(1, 6) == 6); + REQUIRE(simgrid::xbt::random::uniform_int(1, 6) == 4); REQUIRE(simgrid::xbt::random::uniform_real(0, 1) == 0.31637556043369124970); REQUIRE(simgrid::xbt::random::normal(0, 2) == 1.62746784745133976635); } + + SECTION("Using XBT_RNG_std") + { + std::mt19937 gen; + gen.seed(12345); + + simgrid::xbt::random::set_mersenne_seed(12345); + simgrid::xbt::random::set_implem_std(); + + std::exponential_distribution<> distA(25); + std::uniform_int_distribution<> distB(1, 6); + std::uniform_real_distribution<> distC(0, 1); + std::normal_distribution<> distD(0, 2); + + REQUIRE(simgrid::xbt::random::exponential(25) == distA(gen)); + REQUIRE(simgrid::xbt::random::uniform_int(1, 6) == distB(gen)); + REQUIRE(simgrid::xbt::random::uniform_real(0, 1) == distC(gen)); + REQUIRE(simgrid::xbt::random::normal(0, 2) == distD(gen)); + } }