2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Fix example compiler requirements. Add <toolset>gcc-mingw:<cxxflags>-Wa,-mbig-obj to test/Jamefile.v2. Minor doc/code updates.

This commit is contained in:
Matt Pulver
2019-02-14 10:54:42 -05:00
parent 9418a4e2d4
commit 1bf3ba6bd2
7 changed files with 20 additions and 20 deletions

View File

@@ -145,8 +145,8 @@ test-suite examples :
[ run cubic_b_spline_example.cpp : : : [ requires cxx11_smart_ptr cxx11_hdr_random cxx11_defaulted_functions ] ]
[ compile naive_monte_carlo_example.cpp : [ requires cxx11_auto_declarations cxx11_lambdas cxx11_unified_initialization_syntax cxx11_hdr_thread cxx11_hdr_atomic cxx11_decltype cxx11_hdr_future cxx11_hdr_chrono cxx11_hdr_random cxx11_allocator ] ] # requires user input, can't run it, take a long time too!
[ run catmull_rom_example.cpp : : : [ requires cxx17_if_constexpr cxx11_auto_declarations cxx17_std_apply ] ] # Actually the C++17 features used is std::size, not if constexpr; looks like there isn't yet a test for it.
[ run autodiff_black_scholes.cpp : : : [ requires cxx11_lambdas ] ]
[ run autodiff_fourth_power.cpp : : : [ requires cxx11_lambdas ] ]
[ run autodiff_mixed_partials.cpp : : : [ requires cxx11_lambdas ] ]
[ run autodiff_multiprecision.cpp : : : [ requires cxx11_lambdas ] ]
[ run autodiff_black_scholes.cpp : : : [ requires cxx11_inline_namespaces ] ]
[ run autodiff_fourth_power.cpp : : : [ requires cxx11_inline_namespaces ] ]
[ run autodiff_mixed_partials.cpp : : : [ requires cxx11_inline_namespaces ] ]
[ run autodiff_multiprecision.cpp : : : [ requires cxx11_inline_namespaces ] ]
;