From 19fcec84d8d7d21e796c7624e521b60d28ee21ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:45:59 +0200 Subject: Adding upstream version 16.2.11+ds. Signed-off-by: Daniel Baumann --- src/boost/libs/math/example/policy_eg_1.cpp | 70 +++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 src/boost/libs/math/example/policy_eg_1.cpp (limited to 'src/boost/libs/math/example/policy_eg_1.cpp') diff --git a/src/boost/libs/math/example/policy_eg_1.cpp b/src/boost/libs/math/example/policy_eg_1.cpp new file mode 100644 index 000000000..7f8d9fbb4 --- /dev/null +++ b/src/boost/libs/math/example/policy_eg_1.cpp @@ -0,0 +1,70 @@ +// Copyright John Maddock 2007. +// Copyright Paul A> Bristow 2010 +// Use, modification and distribution are subject to 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) + +#include +using std::cout; using std::endl; +#include // for ::errno + +//[policy_eg_1 + +#include +using boost::math::tgamma; + +// Define the policy to use: +using namespace boost::math::policies; // may be convenient, or + +using boost::math::policies::policy; +// Types of error whose action can be altered by policies:. +using boost::math::policies::evaluation_error; +using boost::math::policies::domain_error; +using boost::math::policies::overflow_error; +using boost::math::policies::domain_error; +using boost::math::policies::pole_error; +// Actions on error (in enum error_policy_type): +using boost::math::policies::errno_on_error; +using boost::math::policies::ignore_error; +using boost::math::policies::throw_on_error; +using boost::math::policies::user_error; + +typedef policy< + domain_error, + pole_error, + overflow_error, + evaluation_error +> c_policy; +// +// Now use the policy when calling tgamma: + +// http://msdn.microsoft.com/en-us/library/t3ayayh1.aspx +// Microsoft errno declared in STDLIB.H as "extern int errno;" + +int main() +{ + errno = 0; // Reset. + cout << "Result of tgamma(30000) is: " + << tgamma(30000, c_policy()) << endl; // Too big parameter + cout << "errno = " << errno << endl; // errno 34 Numerical result out of range. + cout << "Result of tgamma(-10) is: " + << boost::math::tgamma(-10, c_policy()) << endl; // Negative parameter. + cout << "errno = " << errno << endl; // error 33 Numerical argument out of domain. +} // int main() + +//] + +/* Output + +policy_eg_1.cpp + Generating code + Finished generating code + policy_eg_1.vcxproj -> J:\Cpp\MathToolkit\test\Math_test\Release\policy_eg_1.exe + Result of tgamma(30000) is: 1.#INF + errno = 34 + Result of tgamma(-10) is: 1.#QNAN + errno = 33 + +*/ + + -- cgit v1.2.3