X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0ffe6c466e437ebbda9be47bbd77d3775623a2d7..bfe580c9acb43ca1ca658f9111d4cd6f5951bbdc:/src/xbt/random_test.cpp diff --git a/src/xbt/random_test.cpp b/src/xbt/random_test.cpp index a474825426..e5f23befb4 100644 --- a/src/xbt/random_test.cpp +++ b/src/xbt/random_test.cpp @@ -1,13 +1,13 @@ -/* Copyright (c) 2019-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2019-2023. 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. */ -#include "src/include/catch.hpp" +#include "src/3rd-party/catch.hpp" #include "xbt/log.h" #include "xbt/random.hpp" -#include #include +#include #define EpsilonApprox(a) Catch::Matchers::WithinAbs((a), 100 * std::numeric_limits::epsilon()) @@ -43,10 +43,10 @@ TEST_CASE("xbt::random: Random Number Generation") simgrid::xbt::random::set_implem_std(); simgrid::xbt::random::set_mersenne_seed(12345); - 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); + std::exponential_distribution distA(25.0); + std::uniform_int_distribution distB(1, 6); + std::uniform_real_distribution distC(0.0, 1.0); + std::normal_distribution distD(0.0, 2.0); REQUIRE_THAT(simgrid::xbt::random::exponential(25), EpsilonApprox(distA(gen))); REQUIRE(simgrid::xbt::random::uniform_int(1, 6) == distB(gen));