mirror of
https://github.com/boostorg/math.git
synced 2026-02-26 04:42:22 +00:00
37 lines
927 B
Plaintext
37 lines
927 B
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 ]
|
|
;
|
|
|
|
# Distributions
|
|
run test_arcsine.cpp ;
|
|
run test_bernoulli.cpp ;
|
|
run test_cauchy.cpp ;
|
|
run test_exponential_dist.cpp ;
|
|
run test_extreme_value.cpp ;
|
|
run test_holtsmark.cpp ;
|
|
run test_landau.cpp ;
|
|
run test_laplace.cpp ;
|
|
run test_logistic_dist.cpp ;
|
|
run test_mapairy.cpp ;
|
|
run test_saspoint5.cpp ;
|
|
|
|
# Special Functions
|
|
run pow_test.cpp ;
|
|
run test_beta_simple.cpp ;
|
|
run test_cbrt.cpp ;
|
|
run test_sign.cpp ;
|
|
run test_round.cpp ;
|
|
run test_expm1_simple.cpp ;
|
|
run test_log1p_simple.cpp ;
|
|
run test_digamma_simple.cpp ;
|
|
run test_trigamma.cpp ;
|
|
run test_erf.cpp ;
|
|
run test_gamma.cpp ;
|