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/special_data.cpp | 84 ++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 src/boost/libs/math/example/special_data.cpp (limited to 'src/boost/libs/math/example/special_data.cpp') diff --git a/src/boost/libs/math/example/special_data.cpp b/src/boost/libs/math/example/special_data.cpp new file mode 100644 index 000000000..2e101b409 --- /dev/null +++ b/src/boost/libs/math/example/special_data.cpp @@ -0,0 +1,84 @@ +// Copyright John Maddock 2006. +// 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) + +//[special_data_example + +#include +#include +#include +#include + +using namespace boost::math::tools; +using namespace boost::math; +using namespace std; +using namespace boost::multiprecision; + +template +T my_special(T a, T b) +{ + // Implementation of my_special here... + return a + b; +} + +int cpp_main(int argc, char*argv []) +{ + // + // We'll use so many digits of precision that any + // calculation errors will still leave us with + // 40-50 good digits. We'll only run this program + // once so it doesn't matter too much how long this takes! + // + typedef number > bignum; + + parameter_info arg1, arg2; + test_data data; + + bool cont; + std::string line; + + if(argc < 1) + return 1; + + do{ + // + // User interface which prompts for + // range of input parameters: + // + if(0 == get_user_parameter_info(arg1, "a")) + return 1; + if(0 == get_user_parameter_info(arg2, "b")) + return 1; + + // + // Get a pointer to the function and call + // test_data::insert to actually generate + // the values. + // + bignum (*fp)(bignum, bignum) = &my_special; + data.insert(fp, arg2, arg1); + + std::cout << "Any more data [y/n]?"; + std::getline(std::cin, line); + boost::algorithm::trim(line); + cont = (line == "y"); + }while(cont); + // + // Just need to write the results to a file: + // + std::cout << "Enter name of test data file [default=my_special.ipp]"; + std::getline(std::cin, line); + boost::algorithm::trim(line); + if(line == "") + line = "my_special.ipp"; + std::ofstream ofs(line.c_str()); + line.erase(line.find('.')); + ofs << std::scientific << std::setprecision(50); + write_code(ofs, data, line.c_str()); + + return 0; +} + +//] -- cgit v1.2.3