From a054903cdd8094c345fa4ceee952e97cc2e5dabc Mon Sep 17 00:00:00 2001 From: Matt Borland Date: Fri, 26 Jul 2024 16:31:23 -0400 Subject: [PATCH] Add SYCL testing of exponential dist --- test/sycl_jamfile | 1 + test/test_exponential_dist.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/test/sycl_jamfile b/test/sycl_jamfile index 92580c93b..f02065a39 100644 --- a/test/sycl_jamfile +++ b/test/sycl_jamfile @@ -13,6 +13,7 @@ project : requirements run test_arcsine.cpp ; run test_bernoulli.cpp ; run test_cauchy.cpp ; +run test_exponential_dist.cpp ; # Special Functions run pow_test.cpp ; diff --git a/test/test_exponential_dist.cpp b/test/test_exponential_dist.cpp index d1898fa7c..1b21df141 100644 --- a/test/test_exponential_dist.cpp +++ b/test/test_exponential_dist.cpp @@ -8,7 +8,7 @@ // test_exponential_dist.cpp -#include +#include "../include_private/boost/math/tools/test.hpp" #include // for real_concept #include using boost::math::exponential_distribution;