X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/647a6e65f7e55174c44e2fe40576a86bb8fb738c..037217ec2176ada8eb05cd8e5f5b63e7440c63a3:/src/xbt/random_test.cpp diff --git a/src/xbt/random_test.cpp b/src/xbt/random_test.cpp index d8cee2232a..f601ea9791 100644 --- a/src/xbt/random_test.cpp +++ b/src/xbt/random_test.cpp @@ -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. */ @@ -7,17 +7,19 @@ #include "xbt/log.h" #include "xbt/random.hpp" #include +#include + +#define EpsilonApprox(a) Catch::Matchers::WithinAbs((a), 100 * std::numeric_limits::epsilon()) TEST_CASE("xbt::random: Random Number Generation") { SECTION("Using XBT_RNG_xbt") { simgrid::xbt::random::set_mersenne_seed(12345); - - REQUIRE(simgrid::xbt::random::exponential(25) == 0.00291934351538427348); + REQUIRE_THAT(simgrid::xbt::random::exponential(25), EpsilonApprox(0.00291934352469749815)); 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); + REQUIRE_THAT(simgrid::xbt::random::uniform_real(0, 1), EpsilonApprox(0.31637556036002933979)); + REQUIRE_THAT(simgrid::xbt::random::normal(0, 2), EpsilonApprox(1.62746784853777226587)); } SECTION("Using XBT_RNG_std") @@ -33,9 +35,9 @@ TEST_CASE("xbt::random: Random Number Generation") std::uniform_real_distribution<> distC(0, 1); std::normal_distribution<> distD(0, 2); - REQUIRE(simgrid::xbt::random::exponential(25) == distA(gen)); + REQUIRE_THAT(simgrid::xbt::random::exponential(25), EpsilonApprox(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)); + REQUIRE_THAT(simgrid::xbt::random::uniform_real(0, 1), EpsilonApprox(distC(gen))); + REQUIRE_THAT(simgrid::xbt::random::normal(0, 2), EpsilonApprox(distD(gen))); } }