mirror of
https://github.com/boostorg/math.git
synced 2026-01-19 04:22:09 +00:00
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
# Copyright 2024 Matt Borland
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# https://www.boost.org/LICENSE_1_0.txt
|
|
|
|
import testing ;
|
|
import ../../config/checks/config : requires ;
|
|
|
|
project : requirements
|
|
[ requires cxx14_decltype_auto cxx14_generic_lambdas cxx14_return_type_deduction cxx14_variable_templates cxx14_constexpr ]
|
|
;
|
|
|
|
# Autodiff Tests
|
|
run test_autodiff_1.cpp ;
|
|
|
|
# Tools Tests
|
|
run test_polynomial.cpp ;
|
|
|
|
# Distributions
|
|
run test_arcsine_cdf_double.cu ;
|
|
run test_arcsine_cdf_float.cu ;
|
|
run test_arcsine_pdf_double.cu ;
|
|
run test_arcsine_pdf_float.cu ;
|
|
run test_arcsine_quan_double.cu ;
|
|
run test_arcsine_quan_float.cu ;
|
|
run test_binomial.cpp ;
|
|
run test_cauchy_cdf_double.cu ;
|
|
run test_cauchy_cdf_float.cu ;
|
|
run test_cauchy_pdf_double.cu ;
|
|
run test_cauchy_pdf_float.cu ;
|
|
run test_cauchy_quan_double.cu ;
|
|
run test_cauchy_quan_float.cu ;
|
|
|
|
# Special Functions
|
|
# run test_beta_simple.cpp ;
|
|
run test_beta_double.cu ;
|
|
run test_beta_float.cu ;
|
|
run test_cbrt_double.cu ;
|
|
run test_cbrt_float.cu ;
|
|
run test_changesign_double.cu ;
|
|
run test_changesign_float.cu ;
|
|
run test_round_double.cu ;
|
|
run test_round_float.cu ;
|
|
run test_trunc_double.cu ;
|
|
run test_trunc_float.cu ;
|