mirror of
https://github.com/boostorg/math.git
synced 2026-01-28 07:22:12 +00:00
55 lines
1.7 KiB
Plaintext
55 lines
1.7 KiB
Plaintext
# \math_toolkit\libs\math\example\jamfile.v2
|
|
# Runs statistics examples
|
|
# Copyright 2007 John Maddock and Paul A. Bristow.
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
# bring in the rules for testing
|
|
import testing ;
|
|
|
|
project
|
|
: requirements
|
|
<toolset>gcc:<cxxflags>-Wno-missing-braces
|
|
<toolset>darwin:<cxxflags>-Wno-missing-braces
|
|
<toolset>acc:<cxxflags>+W2068,2461,2236,4070
|
|
<toolset>intel:<cxxflags>-Qwd264,239
|
|
<toolset>msvc:<warnings>all
|
|
<toolset>msvc:<asynch-exceptions>on
|
|
<toolset>msvc:<cxxflags>/wd4996
|
|
<toolset>msvc:<cxxflags>/wd4512
|
|
<toolset>msvc:<cxxflags>/wd4610
|
|
<toolset>msvc:<cxxflags>/wd4510
|
|
<toolset>msvc:<cxxflags>/wd4127
|
|
<toolset>msvc:<cxxflags>/wd4701
|
|
<include>../../..
|
|
;
|
|
|
|
run C_error_policy_example.cpp ;
|
|
run Neg_binomial_confidence_limits.cpp ;
|
|
run binomial_confidence_limits.cpp ;
|
|
run binomial_example3.cpp ;
|
|
run binomial_sample_sizes.cpp ;
|
|
run chi_square_std_dev_test.cpp ;
|
|
run distribution_construction.cpp ;
|
|
run error_handling_example.cpp ;
|
|
run error_policies_example.cpp ;
|
|
run error_policy_example.cpp ;
|
|
run f_test.cpp ;
|
|
run neg_binomial_sample_sizes.cpp ;
|
|
run negative_binomial_construction_examples.cpp ;
|
|
run negative_binomial_example1.cpp ;
|
|
run negative_binomial_example2.cpp ;
|
|
run negative_binomial_example3.cpp ;
|
|
run policy_eg_1.cpp ;
|
|
run policy_eg_2.cpp ;
|
|
run policy_eg_3.cpp ;
|
|
run policy_eg_4.cpp ;
|
|
run policy_eg_5.cpp ;
|
|
# run statistics_functions_example1.cpp ; needs update to use accumulator
|
|
run students_t_example1.cpp ;
|
|
run students_t_example2.cpp ;
|
|
run students_t_example3.cpp ;
|
|
run students_t_single_sample.cpp ;
|
|
run students_t_two_samples.cpp ;
|
|
|