diff --git a/doc/html/boost_multiprecision/tut/limits.html b/doc/html/boost_multiprecision/tut/limits.html index cdbf191be..66e1a9fdf 100644 --- a/doc/html/boost_multiprecision/tut/limits.html +++ b/doc/html/boost_multiprecision/tut/limits.html @@ -56,7 +56,7 @@ That C Standard in turn refers to

- IEEE754 IEEE Standard + IEEE754 IEEE Standard for Binary Floating-Point Arithmetic

diff --git a/doc/multiprecision.qbk b/doc/multiprecision.qbk index 19fa716c1..aff15bf39 100644 --- a/doc/multiprecision.qbk +++ b/doc/multiprecision.qbk @@ -2374,7 +2374,7 @@ Information technology Language independent arithmetic Part 1: Integer and float That C Standard in turn refers to -[@http://754r.ucbtest.org/standards/754.pdf IEEE754 IEEE Standard for Binary +[@https://doi.org/10.1109/IEEESTD.1985.82928 IEEE754 IEEE Standard for Binary Floating-Point Arithmetic] There is a useful summary at diff --git a/doc/numeric_limits_qbk.cpp b/doc/numeric_limits_qbk.cpp index 5f4f6b194..ebb822798 100644 --- a/doc/numeric_limits_qbk.cpp +++ b/doc/numeric_limits_qbk.cpp @@ -17,7 +17,7 @@ An implementation should follow all the requirements of LIA-1 unless otherwise s this language binding. */ -// http://754r.ucbtest.org/standards/754.pdf +// https://doi.org/10.1109/IEEESTD.1985.82928 // http://www.cesura17.net/~will/Professional/Research/Papers/retrospective.pdf diff --git a/example/complex128_examples.cpp b/example/complex128_examples.cpp index 3035863e2..49f57d18d 100644 --- a/example/complex128_examples.cpp +++ b/example/complex128_examples.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2018 Nick Thompson. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt /*`This example demonstrates the usage of the MPC backend for multiprecision complex numbers. In the following, we will show how using MPC backend allows for the same operations as the C++ standard library complex numbers. diff --git a/example/cpp_bin_float_import_export.cpp b/example/cpp_bin_float_import_export.cpp index f9e62be94..defe42344 100644 --- a/example/cpp_bin_float_import_export.cpp +++ b/example/cpp_bin_float_import_export.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2015 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include #include diff --git a/example/cpp_bin_float_snips.cpp b/example/cpp_bin_float_snips.cpp index 645044018..ac378e059 100644 --- a/example/cpp_bin_float_snips.cpp +++ b/example/cpp_bin_float_snips.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt //[cpp_bin_float_eg #include diff --git a/example/cpp_complex_examples.cpp b/example/cpp_complex_examples.cpp index 4b702625e..7d00cc738 100644 --- a/example/cpp_complex_examples.cpp +++ b/example/cpp_complex_examples.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2018 Nick Thompson. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt /*`This example demonstrates the usage of the MPC backend for multiprecision complex numbers. In the following, we will show how using MPC backend allows for the same operations as the C++ standard library complex numbers. diff --git a/example/cpp_dec_float_snips.cpp b/example/cpp_dec_float_snips.cpp index faa488aba..4bbd89f94 100644 --- a/example/cpp_dec_float_snips.cpp +++ b/example/cpp_dec_float_snips.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt //[cpp_dec_float_eg #include diff --git a/example/cpp_int_import_export.cpp b/example/cpp_int_import_export.cpp index 2ecbbe5d5..7a74e4f23 100644 --- a/example/cpp_int_import_export.cpp +++ b/example/cpp_int_import_export.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2015 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include #include diff --git a/example/cpp_int_snips.cpp b/example/cpp_int_snips.cpp index fb22b1488..4175db3ff 100644 --- a/example/cpp_int_snips.cpp +++ b/example/cpp_int_snips.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include #include diff --git a/example/debug_adaptor_snips.cpp b/example/debug_adaptor_snips.cpp index ca19f444e..2d0efe9ab 100644 --- a/example/debug_adaptor_snips.cpp +++ b/example/debug_adaptor_snips.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include #include diff --git a/example/eigen_example.cpp b/example/eigen_example.cpp index f9b057982..a70e3fbcf 100644 --- a/example/eigen_example.cpp +++ b/example/eigen_example.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2018 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt //[eigen_eg #include diff --git a/example/float128_snips.cpp b/example/float128_snips.cpp index a8dfbcb8b..5d0592529 100644 --- a/example/float128_snips.cpp +++ b/example/float128_snips.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt //[float128_eg #include diff --git a/example/floating_point_examples.cpp b/example/floating_point_examples.cpp index f58073863..f34e278f8 100644 --- a/example/floating_point_examples.cpp +++ b/example/floating_point_examples.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include #include diff --git a/example/gmp_snips.cpp b/example/gmp_snips.cpp index d3347da18..f41e77bf3 100644 --- a/example/gmp_snips.cpp +++ b/example/gmp_snips.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include #include diff --git a/example/hashing_examples.cpp b/example/hashing_examples.cpp index c7a274047..a0c3fb508 100644 --- a/example/hashing_examples.cpp +++ b/example/hashing_examples.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include #include diff --git a/example/integer_examples.cpp b/example/integer_examples.cpp index 67187978d..b8e1fab63 100644 --- a/example/integer_examples.cpp +++ b/example/integer_examples.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include #include diff --git a/example/logged_adaptor.cpp b/example/logged_adaptor.cpp index e6270af6e..f204cf39f 100644 --- a/example/logged_adaptor.cpp +++ b/example/logged_adaptor.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt //[logged_adaptor diff --git a/example/mixed_integer_arithmetic.cpp b/example/mixed_integer_arithmetic.cpp index 48155115c..c1ab5b5cc 100644 --- a/example/mixed_integer_arithmetic.cpp +++ b/example/mixed_integer_arithmetic.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/example/mpc_examples.cpp b/example/mpc_examples.cpp index e751b79d3..30f9a0bfe 100644 --- a/example/mpc_examples.cpp +++ b/example/mpc_examples.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2018 Nick Thompson. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt /*`This example demonstrates the usage of the MPC backend for multiprecision complex numbers. In the following, we will show how using MPC backend allows for the same operations as the C++ standard library complex numbers. diff --git a/example/mpfi_snips.cpp b/example/mpfi_snips.cpp index c3580a194..b36e22b5b 100644 --- a/example/mpfi_snips.cpp +++ b/example/mpfi_snips.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt //[mpfi_eg #include diff --git a/example/mpfr_precision.cpp b/example/mpfr_precision.cpp index ca84d815c..9138b60ee 100644 --- a/example/mpfr_precision.cpp +++ b/example/mpfr_precision.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2018 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt //[mpfr_variable diff --git a/example/mpfr_snips.cpp b/example/mpfr_snips.cpp index ccb5c9a4d..e0ac6aebc 100644 --- a/example/mpfr_snips.cpp +++ b/example/mpfr_snips.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt //[mpfr_eg #include diff --git a/example/random_snips.cpp b/example/random_snips.cpp index a979b1306..e295564b2 100644 --- a/example/random_snips.cpp +++ b/example/random_snips.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include #include diff --git a/example/safe_prime.cpp b/example/safe_prime.cpp index 4421f8d7b..dbe40ef2e 100644 --- a/example/safe_prime.cpp +++ b/example/safe_prime.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt //[safe_prime diff --git a/example/tommath_snips.cpp b/example/tommath_snips.cpp index 63a78b22e..f3b817bd5 100644 --- a/example/tommath_snips.cpp +++ b/example/tommath_snips.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include #include diff --git a/include/boost/multiprecision/concepts/mp_number_archetypes.hpp b/include/boost/multiprecision/concepts/mp_number_archetypes.hpp index 5e1051c88..30dca7d0c 100644 --- a/include/boost/multiprecision/concepts/mp_number_archetypes.hpp +++ b/include/boost/multiprecision/concepts/mp_number_archetypes.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MATH_CONCEPTS_ER_HPP #define BOOST_MATH_CONCEPTS_ER_HPP diff --git a/include/boost/multiprecision/cpp_bin_float.hpp b/include/boost/multiprecision/cpp_bin_float.hpp index 3d8369500..9161a9fa4 100644 --- a/include/boost/multiprecision/cpp_bin_float.hpp +++ b/include/boost/multiprecision/cpp_bin_float.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MATH_CPP_BIN_FLOAT_HPP #define BOOST_MATH_CPP_BIN_FLOAT_HPP diff --git a/include/boost/multiprecision/cpp_bin_float/io.hpp b/include/boost/multiprecision/cpp_bin_float/io.hpp index 8a3faaa4f..43b016a73 100644 --- a/include/boost/multiprecision/cpp_bin_float/io.hpp +++ b/include/boost/multiprecision/cpp_bin_float/io.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_CPP_BIN_FLOAT_IO_HPP #define BOOST_MP_CPP_BIN_FLOAT_IO_HPP diff --git a/include/boost/multiprecision/cpp_bin_float/transcendental.hpp b/include/boost/multiprecision/cpp_bin_float/transcendental.hpp index 5c1842dc7..654e6678d 100644 --- a/include/boost/multiprecision/cpp_bin_float/transcendental.hpp +++ b/include/boost/multiprecision/cpp_bin_float/transcendental.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MULTIPRECISION_CPP_BIN_FLOAT_TRANSCENDENTAL_HPP #define BOOST_MULTIPRECISION_CPP_BIN_FLOAT_TRANSCENDENTAL_HPP diff --git a/include/boost/multiprecision/cpp_int.hpp b/include/boost/multiprecision/cpp_int.hpp index 6af30fd9e..526ff4e4d 100644 --- a/include/boost/multiprecision/cpp_int.hpp +++ b/include/boost/multiprecision/cpp_int.hpp @@ -1,7 +1,7 @@ //////////////////3///////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_CPP_INT_HPP #define BOOST_MP_CPP_INT_HPP diff --git a/include/boost/multiprecision/cpp_int/add.hpp b/include/boost/multiprecision/cpp_int/add.hpp index 3b769cd8b..8da7e1d85 100644 --- a/include/boost/multiprecision/cpp_int/add.hpp +++ b/include/boost/multiprecision/cpp_int/add.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Comparison operators for cpp_int_backend: // diff --git a/include/boost/multiprecision/cpp_int/bitwise.hpp b/include/boost/multiprecision/cpp_int/bitwise.hpp index bb0eb59e6..307ff885b 100644 --- a/include/boost/multiprecision/cpp_int/bitwise.hpp +++ b/include/boost/multiprecision/cpp_int/bitwise.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Comparison operators for cpp_int_backend: // diff --git a/include/boost/multiprecision/cpp_int/checked.hpp b/include/boost/multiprecision/cpp_int/checked.hpp index cafe50ea4..b3d499a4d 100644 --- a/include/boost/multiprecision/cpp_int/checked.hpp +++ b/include/boost/multiprecision/cpp_int/checked.hpp @@ -1,7 +1,7 @@ // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_CPP_INT_CHECKED_HPP #define BOOST_MP_CPP_INT_CHECKED_HPP diff --git a/include/boost/multiprecision/cpp_int/comparison.hpp b/include/boost/multiprecision/cpp_int/comparison.hpp index 48a66fc2b..cf58ee0b0 100644 --- a/include/boost/multiprecision/cpp_int/comparison.hpp +++ b/include/boost/multiprecision/cpp_int/comparison.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Comparison operators for cpp_int_backend: // diff --git a/include/boost/multiprecision/cpp_int/cpp_int_config.hpp b/include/boost/multiprecision/cpp_int/cpp_int_config.hpp index eb88f3da8..9dbebcf52 100644 --- a/include/boost/multiprecision/cpp_int/cpp_int_config.hpp +++ b/include/boost/multiprecision/cpp_int/cpp_int_config.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_CPP_INT_CORE_HPP #define BOOST_MP_CPP_INT_CORE_HPP diff --git a/include/boost/multiprecision/cpp_int/divide.hpp b/include/boost/multiprecision/cpp_int/divide.hpp index 81583ec38..2856d50bf 100644 --- a/include/boost/multiprecision/cpp_int/divide.hpp +++ b/include/boost/multiprecision/cpp_int/divide.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Comparison operators for cpp_int_backend: // diff --git a/include/boost/multiprecision/cpp_int/import_export.hpp b/include/boost/multiprecision/cpp_int/import_export.hpp index 7bb916d4c..9aad882b2 100644 --- a/include/boost/multiprecision/cpp_int/import_export.hpp +++ b/include/boost/multiprecision/cpp_int/import_export.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2015 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_CPP_INT_IMPORT_EXPORT_HPP #define BOOST_MP_CPP_INT_IMPORT_EXPORT_HPP diff --git a/include/boost/multiprecision/cpp_int/limits.hpp b/include/boost/multiprecision/cpp_int/limits.hpp index b19e1ebbe..7b1e59e7f 100644 --- a/include/boost/multiprecision/cpp_int/limits.hpp +++ b/include/boost/multiprecision/cpp_int/limits.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Comparison operators for cpp_int_backend: // diff --git a/include/boost/multiprecision/cpp_int/literals.hpp b/include/boost/multiprecision/cpp_int/literals.hpp index ce30fd848..3eff00e18 100644 --- a/include/boost/multiprecision/cpp_int/literals.hpp +++ b/include/boost/multiprecision/cpp_int/literals.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_CPP_INT_LITERALS_HPP #define BOOST_MP_CPP_INT_LITERALS_HPP diff --git a/include/boost/multiprecision/cpp_int/misc.hpp b/include/boost/multiprecision/cpp_int/misc.hpp index 0985c73f4..9398db5cd 100644 --- a/include/boost/multiprecision/cpp_int/misc.hpp +++ b/include/boost/multiprecision/cpp_int/misc.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Comparison operators for cpp_int_backend: // diff --git a/include/boost/multiprecision/cpp_int/multiply.hpp b/include/boost/multiprecision/cpp_int/multiply.hpp index ac01812b5..f94ca84d5 100644 --- a/include/boost/multiprecision/cpp_int/multiply.hpp +++ b/include/boost/multiprecision/cpp_int/multiply.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Comparison operators for cpp_int_backend: // diff --git a/include/boost/multiprecision/cpp_int/serialize.hpp b/include/boost/multiprecision/cpp_int/serialize.hpp index ad0031b9d..c1d1b9158 100644 --- a/include/boost/multiprecision/cpp_int/serialize.hpp +++ b/include/boost/multiprecision/cpp_int/serialize.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_CPP_INT_SERIALIZE_HPP #define BOOST_MP_CPP_INT_SERIALIZE_HPP diff --git a/include/boost/multiprecision/cpp_int/value_pack.hpp b/include/boost/multiprecision/cpp_int/value_pack.hpp index 29d9562e0..4b4ac0933 100644 --- a/include/boost/multiprecision/cpp_int/value_pack.hpp +++ b/include/boost/multiprecision/cpp_int/value_pack.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_CPP_INT_VP_HPP #define BOOST_MP_CPP_INT_VP_HPP diff --git a/include/boost/multiprecision/debug_adaptor.hpp b/include/boost/multiprecision/debug_adaptor.hpp index 505bea1df..4105d4592 100644 --- a/include/boost/multiprecision/debug_adaptor.hpp +++ b/include/boost/multiprecision/debug_adaptor.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MATH_DEBUG_ADAPTER_HPP #define BOOST_MATH_DEBUG_ADAPTER_HPP diff --git a/include/boost/multiprecision/detail/bitscan.hpp b/include/boost/multiprecision/detail/bitscan.hpp index e6fd74ac3..e5d756ef7 100644 --- a/include/boost/multiprecision/detail/bitscan.hpp +++ b/include/boost/multiprecision/detail/bitscan.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Comparison operators for cpp_int_backend: // diff --git a/include/boost/multiprecision/detail/digits.hpp b/include/boost/multiprecision/detail/digits.hpp index 8752f5b5b..2badb5ed4 100644 --- a/include/boost/multiprecision/detail/digits.hpp +++ b/include/boost/multiprecision/detail/digits.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_DIGITS_HPP #define BOOST_MP_DIGITS_HPP diff --git a/include/boost/multiprecision/detail/float_string_cvt.hpp b/include/boost/multiprecision/detail/float_string_cvt.hpp index 9b5774f1a..8cb4ebe4a 100644 --- a/include/boost/multiprecision/detail/float_string_cvt.hpp +++ b/include/boost/multiprecision/detail/float_string_cvt.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Generic routines for converting floating point values to and from decimal strings. // Note that these use "naive" algorithms which result in rounding error - so they diff --git a/include/boost/multiprecision/detail/integer_ops.hpp b/include/boost/multiprecision/detail/integer_ops.hpp index 4b1a9d8ba..a789681c9 100644 --- a/include/boost/multiprecision/detail/integer_ops.hpp +++ b/include/boost/multiprecision/detail/integer_ops.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_INT_FUNC_HPP #define BOOST_MP_INT_FUNC_HPP diff --git a/include/boost/multiprecision/float128.hpp b/include/boost/multiprecision/float128.hpp index f8652d306..ce290723b 100644 --- a/include/boost/multiprecision/float128.hpp +++ b/include/boost/multiprecision/float128.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_FLOAT128_HPP #define BOOST_MP_FLOAT128_HPP diff --git a/include/boost/multiprecision/integer.hpp b/include/boost/multiprecision/integer.hpp index e4c8bf8b6..f2b43c320 100644 --- a/include/boost/multiprecision/integer.hpp +++ b/include/boost/multiprecision/integer.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_INTEGER_HPP #define BOOST_MP_INTEGER_HPP diff --git a/include/boost/multiprecision/logged_adaptor.hpp b/include/boost/multiprecision/logged_adaptor.hpp index 596d13ed7..014a117d3 100644 --- a/include/boost/multiprecision/logged_adaptor.hpp +++ b/include/boost/multiprecision/logged_adaptor.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MATH_LOGGED_ADAPTER_HPP #define BOOST_MATH_LOGGED_ADAPTER_HPP diff --git a/include/boost/multiprecision/miller_rabin.hpp b/include/boost/multiprecision/miller_rabin.hpp index 156f9b852..655358813 100644 --- a/include/boost/multiprecision/miller_rabin.hpp +++ b/include/boost/multiprecision/miller_rabin.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_MR_HPP #define BOOST_MP_MR_HPP diff --git a/include/boost/multiprecision/random.hpp b/include/boost/multiprecision/random.hpp index c6b7d34e0..c69fd94de 100644 --- a/include/boost/multiprecision/random.hpp +++ b/include/boost/multiprecision/random.hpp @@ -3,7 +3,7 @@ // Copyright Steven Watanabe 2011 // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_RANDOM_HPP #define BOOST_MP_RANDOM_HPP diff --git a/include/boost/multiprecision/rational_adaptor.hpp b/include/boost/multiprecision/rational_adaptor.hpp index 860a43bfa..9f33ec93c 100644 --- a/include/boost/multiprecision/rational_adaptor.hpp +++ b/include/boost/multiprecision/rational_adaptor.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MATH_RATIONAL_ADAPTER_HPP #define BOOST_MATH_RATIONAL_ADAPTER_HPP diff --git a/include/boost/multiprecision/traits/extract_exponent_type.hpp b/include/boost/multiprecision/traits/extract_exponent_type.hpp index adb30d543..28c52c2d0 100644 --- a/include/boost/multiprecision/traits/extract_exponent_type.hpp +++ b/include/boost/multiprecision/traits/extract_exponent_type.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MATH_EXTRACT_EXPONENT_HPP #define BOOST_MATH_EXTRACT_EXPONENT_HPP diff --git a/performance/arithmetic_backend.hpp b/performance/arithmetic_backend.hpp index 35f06b191..f48fdb7de 100644 --- a/performance/arithmetic_backend.hpp +++ b/performance/arithmetic_backend.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MATH_FLOAT_BACKEND_HPP #define BOOST_MATH_FLOAT_BACKEND_HPP diff --git a/performance/miller_rabin_performance.cpp b/performance/miller_rabin_performance.cpp index e4ca6a500..1c4f977e4 100644 --- a/performance/miller_rabin_performance.cpp +++ b/performance/miller_rabin_performance.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #define BOOST_CHRONO_HEADER_ONLY diff --git a/performance/performance_test.cpp b/performance/performance_test.cpp index 3478610ca..1daed90b3 100644 --- a/performance/performance_test.cpp +++ b/performance/performance_test.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #define BOOST_CHRONO_HEADER_ONLY diff --git a/performance/sf_performance.cpp b/performance/sf_performance.cpp index 95c08d182..2d984f80d 100644 --- a/performance/sf_performance.cpp +++ b/performance/sf_performance.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance.hpp b/performance/sf_performance.hpp index 4b056e1e2..41173dfc0 100644 --- a/performance/sf_performance.hpp +++ b/performance/sf_performance.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #define BOOST_MATH_MAX_ROOT_ITERATION_POLICY 750 #define BOOST_MATH_PROMOTE_DOUBLE_POLICY false diff --git a/performance/sf_performance_basic.cpp b/performance/sf_performance_basic.cpp index a433288fd..51436d98e 100644 --- a/performance/sf_performance_basic.cpp +++ b/performance/sf_performance_basic.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_bessel.cpp b/performance/sf_performance_bessel.cpp index 817f5a56a..97a9b476c 100644 --- a/performance/sf_performance_bessel.cpp +++ b/performance/sf_performance_bessel.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_bessel1.cpp b/performance/sf_performance_bessel1.cpp index 6c13315f2..0cae2265d 100644 --- a/performance/sf_performance_bessel1.cpp +++ b/performance/sf_performance_bessel1.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_bessel2.cpp b/performance/sf_performance_bessel2.cpp index 13b0f597d..19f76b5f8 100644 --- a/performance/sf_performance_bessel2.cpp +++ b/performance/sf_performance_bessel2.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_bessel3.cpp b/performance/sf_performance_bessel3.cpp index 67ee0fba6..04d918d0a 100644 --- a/performance/sf_performance_bessel3.cpp +++ b/performance/sf_performance_bessel3.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_bessel4.cpp b/performance/sf_performance_bessel4.cpp index 108d62e13..cbb9ec956 100644 --- a/performance/sf_performance_bessel4.cpp +++ b/performance/sf_performance_bessel4.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_bessel5.cpp b/performance/sf_performance_bessel5.cpp index f1154b592..b22c2408f 100644 --- a/performance/sf_performance_bessel5.cpp +++ b/performance/sf_performance_bessel5.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_bessel6.cpp b/performance/sf_performance_bessel6.cpp index 342c10930..f3605c7c1 100644 --- a/performance/sf_performance_bessel6.cpp +++ b/performance/sf_performance_bessel6.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_nct.cpp b/performance/sf_performance_nct.cpp index c0a713bad..4c5a00db2 100644 --- a/performance/sf_performance_nct.cpp +++ b/performance/sf_performance_nct.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_nct1.cpp b/performance/sf_performance_nct1.cpp index cde285c92..4d12c8b24 100644 --- a/performance/sf_performance_nct1.cpp +++ b/performance/sf_performance_nct1.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_nct2.cpp b/performance/sf_performance_nct2.cpp index 76142bea4..a52a029c2 100644 --- a/performance/sf_performance_nct2.cpp +++ b/performance/sf_performance_nct2.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_nct3.cpp b/performance/sf_performance_nct3.cpp index a229669ae..cc84ab1b6 100644 --- a/performance/sf_performance_nct3.cpp +++ b/performance/sf_performance_nct3.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_nct4.cpp b/performance/sf_performance_nct4.cpp index 1ad302711..c23b0fd57 100644 --- a/performance/sf_performance_nct4.cpp +++ b/performance/sf_performance_nct4.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_nct5.cpp b/performance/sf_performance_nct5.cpp index c098ab201..676005a18 100644 --- a/performance/sf_performance_nct5.cpp +++ b/performance/sf_performance_nct5.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_nct6.cpp b/performance/sf_performance_nct6.cpp index 571ff56ef..cf3af1cfe 100644 --- a/performance/sf_performance_nct6.cpp +++ b/performance/sf_performance_nct6.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/performance/sf_performance_poly.cpp b/performance/sf_performance_poly.cpp index 563ac6684..4c84c835e 100644 --- a/performance/sf_performance_poly.cpp +++ b/performance/sf_performance_poly.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "sf_performance.hpp" diff --git a/test/include_test/cpp_bin_float_include_test.cpp b/test/include_test/cpp_bin_float_include_test.cpp index 96862e879..7285d144b 100644 --- a/test/include_test/cpp_bin_float_include_test.cpp +++ b/test/include_test/cpp_bin_float_include_test.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/include_test/cpp_dec_float_include_test.cpp b/test/include_test/cpp_dec_float_include_test.cpp index 1a721fcb8..4f1e43384 100644 --- a/test/include_test/cpp_dec_float_include_test.cpp +++ b/test/include_test/cpp_dec_float_include_test.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/include_test/cpp_int_include_test.cpp b/test/include_test/cpp_int_include_test.cpp index b7ad82856..34e9a133e 100644 --- a/test/include_test/cpp_int_include_test.cpp +++ b/test/include_test/cpp_int_include_test.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/include_test/gmp_include_test.cpp b/test/include_test/gmp_include_test.cpp index 7065ebd1c..66f5978db 100644 --- a/test/include_test/gmp_include_test.cpp +++ b/test/include_test/gmp_include_test.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/include_test/mpfr_include_test.cpp b/test/include_test/mpfr_include_test.cpp index c49f24fc0..cf5d35f9c 100644 --- a/test/include_test/mpfr_include_test.cpp +++ b/test/include_test/mpfr_include_test.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/include_test/tommath_include_test.cpp b/test/include_test/tommath_include_test.cpp index 9f146dbf9..7335d33fb 100644 --- a/test/include_test/tommath_include_test.cpp +++ b/test/include_test/tommath_include_test.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/math/log1p_expm1_test.cpp b/test/math/log1p_expm1_test.cpp index 430c71dc9..3bfb8fb87 100644 --- a/test/math/log1p_expm1_test.cpp +++ b/test/math/log1p_expm1_test.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/math/powm1_sqrtp1m1_test.cpp b/test/math/powm1_sqrtp1m1_test.cpp index 6a914f567..671ed498f 100644 --- a/test/math/powm1_sqrtp1m1_test.cpp +++ b/test/math/powm1_sqrtp1m1_test.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/math/setup.hpp b/test/math/setup.hpp index 2884e3ba1..205270939 100644 --- a/test/math/setup.hpp +++ b/test/math/setup.hpp @@ -1,6 +1,6 @@ // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_MATH_SETUP_HPP #define BOOST_MP_MATH_SETUP_HPP diff --git a/test/math/table_type.hpp b/test/math/table_type.hpp index 32ff66cb9..943916bd7 100644 --- a/test/math/table_type.hpp +++ b/test/math/table_type.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifndef BOOST_MP_TABLE_TYPE #define BOOST_MP_TABLE_TYPE diff --git a/test/math/test_bessel_i.cpp b/test/math/test_bessel_i.cpp index 0bb01b823..01854211b 100644 --- a/test/math/test_bessel_i.cpp +++ b/test/math/test_bessel_i.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/math/test_bessel_j.cpp b/test/math/test_bessel_j.cpp index 0a07f6022..d2ab129ca 100644 --- a/test/math/test_bessel_j.cpp +++ b/test/math/test_bessel_j.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/math/test_bessel_k.cpp b/test/math/test_bessel_k.cpp index df4d13415..f12878946 100644 --- a/test/math/test_bessel_k.cpp +++ b/test/math/test_bessel_k.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/math/test_bessel_y.cpp b/test/math/test_bessel_y.cpp index 6c8b9f193..6e37523e7 100644 --- a/test/math/test_bessel_y.cpp +++ b/test/math/test_bessel_y.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/math/test_beta.cpp b/test/math/test_beta.cpp index c201e64fe..55146db22 100644 --- a/test/math/test_beta.cpp +++ b/test/math/test_beta.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/math/test_binomial_coeff.cpp b/test/math/test_binomial_coeff.cpp index dd2e01a67..deeee4039 100644 --- a/test/math/test_binomial_coeff.cpp +++ b/test/math/test_binomial_coeff.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/math/test_carlson_1.cpp b/test/math/test_carlson_1.cpp index 9bb971db2..4daa61bec 100644 --- a/test/math/test_carlson_1.cpp +++ b/test/math/test_carlson_1.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_carlson_2.cpp b/test/math/test_carlson_2.cpp index 2b32febb4..c37135654 100644 --- a/test/math/test_carlson_2.cpp +++ b/test/math/test_carlson_2.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_carlson_3.cpp b/test/math/test_carlson_3.cpp index adf2002ac..958e4f723 100644 --- a/test/math/test_carlson_3.cpp +++ b/test/math/test_carlson_3.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_carlson_4.cpp b/test/math/test_carlson_4.cpp index 9cc423462..6f0214b89 100644 --- a/test/math/test_carlson_4.cpp +++ b/test/math/test_carlson_4.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_cbrt.cpp b/test/math/test_cbrt.cpp index c7854b5f0..f85fb6be9 100644 --- a/test/math/test_cbrt.cpp +++ b/test/math/test_cbrt.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_digamma.cpp b/test/math/test_digamma.cpp index 209a79d25..19605258b 100644 --- a/test/math/test_digamma.cpp +++ b/test/math/test_digamma.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_ellint_1.cpp b/test/math/test_ellint_1.cpp index 39c2a1c19..e2544aac0 100644 --- a/test/math/test_ellint_1.cpp +++ b/test/math/test_ellint_1.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_ellint_2.cpp b/test/math/test_ellint_2.cpp index 775c30f6b..8b0e1c69f 100644 --- a/test/math/test_ellint_2.cpp +++ b/test/math/test_ellint_2.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_ellint_3.cpp b/test/math/test_ellint_3.cpp index db276d34e..8021e8c51 100644 --- a/test/math/test_ellint_3.cpp +++ b/test/math/test_ellint_3.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_erf.cpp b/test/math/test_erf.cpp index 77c785e9e..ebb777921 100644 --- a/test/math/test_erf.cpp +++ b/test/math/test_erf.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_expint.cpp b/test/math/test_expint.cpp index c4899648a..ec3e9a768 100644 --- a/test/math/test_expint.cpp +++ b/test/math/test_expint.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_gamma.cpp b/test/math/test_gamma.cpp index 65663f1b9..251a7cd4b 100644 --- a/test/math/test_gamma.cpp +++ b/test/math/test_gamma.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_hermite.cpp b/test/math/test_hermite.cpp index 5a11f8830..a04a81ac1 100644 --- a/test/math/test_hermite.cpp +++ b/test/math/test_hermite.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_ibeta.cpp b/test/math/test_ibeta.cpp index 187e8feef..21fa65ae1 100644 --- a/test/math/test_ibeta.cpp +++ b/test/math/test_ibeta.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_ibeta_2.cpp b/test/math/test_ibeta_2.cpp index 35089d01e..d50d4738c 100644 --- a/test/math/test_ibeta_2.cpp +++ b/test/math/test_ibeta_2.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_ibeta_3.cpp b/test/math/test_ibeta_3.cpp index 4c51aef61..0b48a4c86 100644 --- a/test/math/test_ibeta_3.cpp +++ b/test/math/test_ibeta_3.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_ibeta_4.cpp b/test/math/test_ibeta_4.cpp index f9064a5b8..ca91fcd4d 100644 --- a/test/math/test_ibeta_4.cpp +++ b/test/math/test_ibeta_4.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_ibeta_inv_1.cpp b/test/math/test_ibeta_inv_1.cpp index e13c05a60..edcd61b44 100644 --- a/test/math/test_ibeta_inv_1.cpp +++ b/test/math/test_ibeta_inv_1.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_ibeta_inv_ab_4.cpp b/test/math/test_ibeta_inv_ab_4.cpp index ed83082dd..36edc0b2f 100644 --- a/test/math/test_ibeta_inv_ab_4.cpp +++ b/test/math/test_ibeta_inv_ab_4.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_igamma.cpp b/test/math/test_igamma.cpp index 75982d508..2de21cbb7 100644 --- a/test/math/test_igamma.cpp +++ b/test/math/test_igamma.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_igamma_inv.cpp b/test/math/test_igamma_inv.cpp index b245305ee..12ad9c739 100644 --- a/test/math/test_igamma_inv.cpp +++ b/test/math/test_igamma_inv.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_igamma_inva.cpp b/test/math/test_igamma_inva.cpp index 42eeb946c..03c23da6a 100644 --- a/test/math/test_igamma_inva.cpp +++ b/test/math/test_igamma_inva.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_laguerre.cpp b/test/math/test_laguerre.cpp index 9b749b1ce..227cac1c8 100644 --- a/test/math/test_laguerre.cpp +++ b/test/math/test_laguerre.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_legendre.cpp b/test/math/test_legendre.cpp index 787a192b1..4ba680642 100644 --- a/test/math/test_legendre.cpp +++ b/test/math/test_legendre.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_tgamma_ratio.cpp b/test/math/test_tgamma_ratio.cpp index 1ef7641e6..b56ef0682 100644 --- a/test/math/test_tgamma_ratio.cpp +++ b/test/math/test_tgamma_ratio.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/math/test_zeta.cpp b/test/math/test_zeta.cpp index b9ae5f6c9..5273669b4 100644 --- a/test/math/test_zeta.cpp +++ b/test/math/test_zeta.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include "setup.hpp" #include "table_type.hpp" diff --git a/test/test.hpp b/test/test.hpp index 51264a853..3e9b04e0b 100644 --- a/test/test.hpp +++ b/test/test.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // #ifndef BOOST_MULTIPRECISION_TEST_HPP diff --git a/test/test_acos.cpp b/test/test_acos.cpp index c8f5e4ea0..03a830405 100644 --- a/test/test_acos.cpp +++ b/test/test_acos.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_adapt_serial.cpp b/test/test_adapt_serial.cpp index a747e06b1..d32fb9a77 100644 --- a/test/test_adapt_serial.cpp +++ b/test/test_adapt_serial.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/test/test_arithmetic.hpp b/test/test_arithmetic.hpp index 5f6c63436..5c44eff96 100644 --- a/test/test_arithmetic.hpp +++ b/test/test_arithmetic.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef TEST_VLD #include diff --git a/test/test_arithmetic_ab_1.cpp b/test/test_arithmetic_ab_1.cpp index 140d3a190..98f02eef9 100644 --- a/test/test_arithmetic_ab_1.cpp +++ b/test/test_arithmetic_ab_1.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_ab_2.cpp b/test/test_arithmetic_ab_2.cpp index 883adecca..b15019616 100644 --- a/test/test_arithmetic_ab_2.cpp +++ b/test/test_arithmetic_ab_2.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_ab_3.cpp b/test/test_arithmetic_ab_3.cpp index 78bc4cca5..d57c1acd8 100644 --- a/test/test_arithmetic_ab_3.cpp +++ b/test/test_arithmetic_ab_3.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_backend_concept.cpp b/test/test_arithmetic_backend_concept.cpp index fafb17ab6..a1e8ac33d 100644 --- a/test/test_arithmetic_backend_concept.cpp +++ b/test/test_arithmetic_backend_concept.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_complex128.cpp b/test/test_arithmetic_complex128.cpp index 34e84d196..a0c972ed7 100644 --- a/test/test_arithmetic_complex128.cpp +++ b/test/test_arithmetic_complex128.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include #ifdef BOOST_HAS_FLOAT128 diff --git a/test/test_arithmetic_complex_adaptor.cpp b/test/test_arithmetic_complex_adaptor.cpp index 30af75b7b..52e7ed844 100644 --- a/test/test_arithmetic_complex_adaptor.cpp +++ b/test/test_arithmetic_complex_adaptor.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #define NO_MIXED_OPS diff --git a/test/test_arithmetic_complex_adaptor_2.cpp b/test/test_arithmetic_complex_adaptor_2.cpp index 00191f339..d39cb0b98 100644 --- a/test/test_arithmetic_complex_adaptor_2.cpp +++ b/test/test_arithmetic_complex_adaptor_2.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #define MIXED_OPS_ONLY diff --git a/test/test_arithmetic_cpp_bin_float_1.cpp b/test/test_arithmetic_cpp_bin_float_1.cpp index 9ab7f2531..a062352a9 100644 --- a/test/test_arithmetic_cpp_bin_float_1.cpp +++ b/test/test_arithmetic_cpp_bin_float_1.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_bin_float_2.cpp b/test/test_arithmetic_cpp_bin_float_2.cpp index c36b525f4..ed31d6a4f 100644 --- a/test/test_arithmetic_cpp_bin_float_2.cpp +++ b/test/test_arithmetic_cpp_bin_float_2.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #define NO_MIXED_OPS diff --git a/test/test_arithmetic_cpp_bin_float_2m.cpp b/test/test_arithmetic_cpp_bin_float_2m.cpp index 12168911d..aa4660af4 100644 --- a/test/test_arithmetic_cpp_bin_float_2m.cpp +++ b/test/test_arithmetic_cpp_bin_float_2m.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #define MIXED_OPS_ONLY diff --git a/test/test_arithmetic_cpp_bin_float_3.cpp b/test/test_arithmetic_cpp_bin_float_3.cpp index 6f9cc6cdf..dcde3dc4d 100644 --- a/test/test_arithmetic_cpp_bin_float_3.cpp +++ b/test/test_arithmetic_cpp_bin_float_3.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_dec_float_1.cpp b/test/test_arithmetic_cpp_dec_float_1.cpp index 7b29687ab..9364c426a 100644 --- a/test/test_arithmetic_cpp_dec_float_1.cpp +++ b/test/test_arithmetic_cpp_dec_float_1.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_dec_float_2.cpp b/test/test_arithmetic_cpp_dec_float_2.cpp index 149ae6dab..21bb51144 100644 --- a/test/test_arithmetic_cpp_dec_float_2.cpp +++ b/test/test_arithmetic_cpp_dec_float_2.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_dec_float_3.cpp b/test/test_arithmetic_cpp_dec_float_3.cpp index 984b475ef..15e86d376 100644 --- a/test/test_arithmetic_cpp_dec_float_3.cpp +++ b/test/test_arithmetic_cpp_dec_float_3.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #define NO_MIXED_OPS diff --git a/test/test_arithmetic_cpp_dec_float_3m.cpp b/test/test_arithmetic_cpp_dec_float_3m.cpp index 4d8cc6220..206cd36d8 100644 --- a/test/test_arithmetic_cpp_dec_float_3m.cpp +++ b/test/test_arithmetic_cpp_dec_float_3m.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #define MIXED_OPS_ONLY diff --git a/test/test_arithmetic_cpp_int_1.cpp b/test/test_arithmetic_cpp_int_1.cpp index 3e5809116..01c7e56d1 100644 --- a/test/test_arithmetic_cpp_int_1.cpp +++ b/test/test_arithmetic_cpp_int_1.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_10.cpp b/test/test_arithmetic_cpp_int_10.cpp index b6252a6e5..4f92504a4 100644 --- a/test/test_arithmetic_cpp_int_10.cpp +++ b/test/test_arithmetic_cpp_int_10.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_11.cpp b/test/test_arithmetic_cpp_int_11.cpp index 8cecf8fd7..856861e90 100644 --- a/test/test_arithmetic_cpp_int_11.cpp +++ b/test/test_arithmetic_cpp_int_11.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_12.cpp b/test/test_arithmetic_cpp_int_12.cpp index 317f0b0cd..dacb590be 100644 --- a/test/test_arithmetic_cpp_int_12.cpp +++ b/test/test_arithmetic_cpp_int_12.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_13.cpp b/test/test_arithmetic_cpp_int_13.cpp index a891aa024..0f6a38162 100644 --- a/test/test_arithmetic_cpp_int_13.cpp +++ b/test/test_arithmetic_cpp_int_13.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_14.cpp b/test/test_arithmetic_cpp_int_14.cpp index a982deda4..f678e5596 100644 --- a/test/test_arithmetic_cpp_int_14.cpp +++ b/test/test_arithmetic_cpp_int_14.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_15.cpp b/test/test_arithmetic_cpp_int_15.cpp index 663061de3..0678a62f6 100644 --- a/test/test_arithmetic_cpp_int_15.cpp +++ b/test/test_arithmetic_cpp_int_15.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_16.cpp b/test/test_arithmetic_cpp_int_16.cpp index 4287e7d46..3da100371 100644 --- a/test/test_arithmetic_cpp_int_16.cpp +++ b/test/test_arithmetic_cpp_int_16.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_17.cpp b/test/test_arithmetic_cpp_int_17.cpp index 971046572..a9b9df609 100644 --- a/test/test_arithmetic_cpp_int_17.cpp +++ b/test/test_arithmetic_cpp_int_17.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_18.cpp b/test/test_arithmetic_cpp_int_18.cpp index c9f914a1a..ed8865996 100644 --- a/test/test_arithmetic_cpp_int_18.cpp +++ b/test/test_arithmetic_cpp_int_18.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_19.cpp b/test/test_arithmetic_cpp_int_19.cpp index a56b9fd1f..97ded122f 100644 --- a/test/test_arithmetic_cpp_int_19.cpp +++ b/test/test_arithmetic_cpp_int_19.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_2.cpp b/test/test_arithmetic_cpp_int_2.cpp index 96c03183d..fa6027beb 100644 --- a/test/test_arithmetic_cpp_int_2.cpp +++ b/test/test_arithmetic_cpp_int_2.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_3.cpp b/test/test_arithmetic_cpp_int_3.cpp index e0e44611d..06025dfca 100644 --- a/test/test_arithmetic_cpp_int_3.cpp +++ b/test/test_arithmetic_cpp_int_3.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_4.cpp b/test/test_arithmetic_cpp_int_4.cpp index 876234b02..eedbdd529 100644 --- a/test/test_arithmetic_cpp_int_4.cpp +++ b/test/test_arithmetic_cpp_int_4.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #define TEST_CHECKED_INT diff --git a/test/test_arithmetic_cpp_int_5.cpp b/test/test_arithmetic_cpp_int_5.cpp index 9e499e053..456aa50e0 100644 --- a/test/test_arithmetic_cpp_int_5.cpp +++ b/test/test_arithmetic_cpp_int_5.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_6.cpp b/test/test_arithmetic_cpp_int_6.cpp index 7601ba4a4..0f10e25a5 100644 --- a/test/test_arithmetic_cpp_int_6.cpp +++ b/test/test_arithmetic_cpp_int_6.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_7.cpp b/test/test_arithmetic_cpp_int_7.cpp index 97acf5ad8..26de162bc 100644 --- a/test/test_arithmetic_cpp_int_7.cpp +++ b/test/test_arithmetic_cpp_int_7.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_8.cpp b/test/test_arithmetic_cpp_int_8.cpp index 5f859dcfe..ace01b54d 100644 --- a/test/test_arithmetic_cpp_int_8.cpp +++ b/test/test_arithmetic_cpp_int_8.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_9.cpp b/test/test_arithmetic_cpp_int_9.cpp index c0d522bdd..7e7fa338f 100644 --- a/test/test_arithmetic_cpp_int_9.cpp +++ b/test/test_arithmetic_cpp_int_9.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include diff --git a/test/test_arithmetic_cpp_int_br.cpp b/test/test_arithmetic_cpp_int_br.cpp index 59409d6d4..5f1f6520c 100644 --- a/test/test_arithmetic_cpp_int_br.cpp +++ b/test/test_arithmetic_cpp_int_br.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #define BOOST_MP_NOT_TESTING_NUMBER diff --git a/test/test_arithmetic_dbg_adptr1.cpp b/test/test_arithmetic_dbg_adptr1.cpp index 4d716273e..b3a86ff12 100644 --- a/test/test_arithmetic_dbg_adptr1.cpp +++ b/test/test_arithmetic_dbg_adptr1.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_dbg_adptr1m.cpp b/test/test_arithmetic_dbg_adptr1m.cpp index d78842e5e..f519c73fc 100644 --- a/test/test_arithmetic_dbg_adptr1m.cpp +++ b/test/test_arithmetic_dbg_adptr1m.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_dbg_adptr2.cpp b/test/test_arithmetic_dbg_adptr2.cpp index 47b5529ae..1671b93da 100644 --- a/test/test_arithmetic_dbg_adptr2.cpp +++ b/test/test_arithmetic_dbg_adptr2.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_float_128.cpp b/test/test_arithmetic_float_128.cpp index aa99287b6..ddc7f2f28 100644 --- a/test/test_arithmetic_float_128.cpp +++ b/test/test_arithmetic_float_128.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_logged_1.cpp b/test/test_arithmetic_logged_1.cpp index 490479719..3d1cf094d 100644 --- a/test/test_arithmetic_logged_1.cpp +++ b/test/test_arithmetic_logged_1.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_logged_2.cpp b/test/test_arithmetic_logged_2.cpp index 2ca2be97f..faeda600d 100644 --- a/test/test_arithmetic_logged_2.cpp +++ b/test/test_arithmetic_logged_2.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_mpc.cpp b/test/test_arithmetic_mpc.cpp index cb4ea51d8..7943296f5 100644 --- a/test/test_arithmetic_mpc.cpp +++ b/test/test_arithmetic_mpc.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include #define TEST_MPC diff --git a/test/test_arithmetic_mpf.cpp b/test/test_arithmetic_mpf.cpp index 9f4a9be20..773a9b0ab 100644 --- a/test/test_arithmetic_mpf.cpp +++ b/test/test_arithmetic_mpf.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_mpf_50.cpp b/test/test_arithmetic_mpf_50.cpp index 4d87dd670..7cdb1173b 100644 --- a/test/test_arithmetic_mpf_50.cpp +++ b/test/test_arithmetic_mpf_50.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_mpfi_50.cpp b/test/test_arithmetic_mpfi_50.cpp index 7088dd9bb..3680d049e 100644 --- a/test/test_arithmetic_mpfi_50.cpp +++ b/test/test_arithmetic_mpfi_50.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_mpfr.cpp b/test/test_arithmetic_mpfr.cpp index 8ce8ef39d..a068a348c 100644 --- a/test/test_arithmetic_mpfr.cpp +++ b/test/test_arithmetic_mpfr.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_mpfr_50.cpp b/test/test_arithmetic_mpfr_50.cpp index cff50b0cf..cc2f995aa 100644 --- a/test/test_arithmetic_mpfr_50.cpp +++ b/test/test_arithmetic_mpfr_50.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_mpfr_50_static.cpp b/test/test_arithmetic_mpfr_50_static.cpp index 5928cd4b7..ffc6a64bd 100644 --- a/test/test_arithmetic_mpfr_50_static.cpp +++ b/test/test_arithmetic_mpfr_50_static.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_mpq.cpp b/test/test_arithmetic_mpq.cpp index 9c9517740..7c5e18550 100644 --- a/test/test_arithmetic_mpq.cpp +++ b/test/test_arithmetic_mpq.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_mpz.cpp b/test/test_arithmetic_mpz.cpp index c2df7708c..2d12b9507 100644 --- a/test/test_arithmetic_mpz.cpp +++ b/test/test_arithmetic_mpz.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_mpz_br.cpp b/test/test_arithmetic_mpz_br.cpp index cb99af639..6f94002d0 100644 --- a/test/test_arithmetic_mpz_br.cpp +++ b/test/test_arithmetic_mpz_br.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_mpz_rat.cpp b/test/test_arithmetic_mpz_rat.cpp index 729039ae4..f330c3e52 100644 --- a/test/test_arithmetic_mpz_rat.cpp +++ b/test/test_arithmetic_mpz_rat.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_tommath.cpp b/test/test_arithmetic_tommath.cpp index 75882a172..a9d7fe613 100644 --- a/test/test_arithmetic_tommath.cpp +++ b/test/test_arithmetic_tommath.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_tommath_br.cpp b/test/test_arithmetic_tommath_br.cpp index 1e7b52ba8..517abd729 100644 --- a/test/test_arithmetic_tommath_br.cpp +++ b/test/test_arithmetic_tommath_br.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_arithmetic_tommath_rat.cpp b/test/test_arithmetic_tommath_rat.cpp index 66a44db45..75b51b3b4 100644 --- a/test/test_arithmetic_tommath_rat.cpp +++ b/test/test_arithmetic_tommath_rat.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_asin.cpp b/test/test_asin.cpp index 4e7af177f..b25ec5932 100644 --- a/test/test_asin.cpp +++ b/test/test_asin.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_atan.cpp b/test/test_atan.cpp index d4a41de3e..c055d8d5d 100644 --- a/test/test_atan.cpp +++ b/test/test_atan.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_checked_cpp_int.cpp b/test/test_checked_cpp_int.cpp index 7ddfb1911..86cf69c1c 100644 --- a/test/test_checked_cpp_int.cpp +++ b/test/test_checked_cpp_int.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/test/test_checked_mixed_cpp_int.cpp b/test/test_checked_mixed_cpp_int.cpp index 3d5ede15e..91e587a1e 100644 --- a/test/test_checked_mixed_cpp_int.cpp +++ b/test/test_checked_mixed_cpp_int.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_convert_from_cpp_bin_float.cpp b/test/test_convert_from_cpp_bin_float.cpp index 0abf483c9..171fa8255 100644 --- a/test/test_convert_from_cpp_bin_float.cpp +++ b/test/test_convert_from_cpp_bin_float.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_convert_from_cpp_dec_float.cpp b/test/test_convert_from_cpp_dec_float.cpp index de0a052c7..9af08d3f4 100644 --- a/test/test_convert_from_cpp_dec_float.cpp +++ b/test/test_convert_from_cpp_dec_float.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_convert_from_cpp_int.cpp b/test/test_convert_from_cpp_int.cpp index 5d4112e4f..04d055078 100644 --- a/test/test_convert_from_cpp_int.cpp +++ b/test/test_convert_from_cpp_int.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_convert_from_cpp_rational.cpp b/test/test_convert_from_cpp_rational.cpp index c1e31d09f..897944e08 100644 --- a/test/test_convert_from_cpp_rational.cpp +++ b/test/test_convert_from_cpp_rational.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_convert_from_float128.cpp b/test/test_convert_from_float128.cpp index 8bf875f86..3596a6cae 100644 --- a/test/test_convert_from_float128.cpp +++ b/test/test_convert_from_float128.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_convert_from_gmp_rational.cpp b/test/test_convert_from_gmp_rational.cpp index acc77145e..1166bf22f 100644 --- a/test/test_convert_from_gmp_rational.cpp +++ b/test/test_convert_from_gmp_rational.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_convert_from_mpf_float.cpp b/test/test_convert_from_mpf_float.cpp index c21ec1656..c05707c56 100644 --- a/test/test_convert_from_mpf_float.cpp +++ b/test/test_convert_from_mpf_float.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_convert_from_mpfi_float.cpp b/test/test_convert_from_mpfi_float.cpp index e2e664db2..3c92d73bd 100644 --- a/test/test_convert_from_mpfi_float.cpp +++ b/test/test_convert_from_mpfi_float.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_convert_from_mpfr_float.cpp b/test/test_convert_from_mpfr_float.cpp index 2aafa5590..b627e014c 100644 --- a/test/test_convert_from_mpfr_float.cpp +++ b/test/test_convert_from_mpfr_float.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_convert_from_mpz_int.cpp b/test/test_convert_from_mpz_int.cpp index 723ee58bf..a7e53e30e 100644 --- a/test/test_convert_from_mpz_int.cpp +++ b/test/test_convert_from_mpz_int.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_convert_from_tom_int.cpp b/test/test_convert_from_tom_int.cpp index 26e7b04f6..2a3eebe99 100644 --- a/test/test_convert_from_tom_int.cpp +++ b/test/test_convert_from_tom_int.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_convert_from_tom_rational.cpp b/test/test_convert_from_tom_rational.cpp index 4bf6ea781..856a737da 100644 --- a/test/test_convert_from_tom_rational.cpp +++ b/test/test_convert_from_tom_rational.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_cos.cpp b/test/test_cos.cpp index 79e7975a7..f8265286f 100644 --- a/test/test_cos.cpp +++ b/test/test_cos.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_cosh.cpp b/test/test_cosh.cpp index a2b89ca16..c1864207c 100644 --- a/test/test_cosh.cpp +++ b/test/test_cosh.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_cpp_bin_float_conv.cpp b/test/test_cpp_bin_float_conv.cpp index a93f3030a..de3cd481a 100644 --- a/test/test_cpp_bin_float_conv.cpp +++ b/test/test_cpp_bin_float_conv.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // #ifdef _MSC_VER diff --git a/test/test_cpp_bin_float_serial.cpp b/test/test_cpp_bin_float_serial.cpp index 361692ba0..ac290eb0d 100644 --- a/test/test_cpp_bin_float_serial.cpp +++ b/test/test_cpp_bin_float_serial.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/test/test_cpp_dec_float_conv.cpp b/test/test_cpp_dec_float_conv.cpp index d1c730649..eb05821e8 100644 --- a/test/test_cpp_dec_float_conv.cpp +++ b/test/test_cpp_dec_float_conv.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // #ifdef _MSC_VER diff --git a/test/test_cpp_dec_float_round.cpp b/test/test_cpp_dec_float_round.cpp index 4d70719aa..d263145c5 100644 --- a/test/test_cpp_dec_float_round.cpp +++ b/test/test_cpp_dec_float_round.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 Christopher Kormanyos. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Test case for ticket: diff --git a/test/test_cpp_dec_float_serial.cpp b/test/test_cpp_dec_float_serial.cpp index 65466535f..5a3ca6b70 100644 --- a/test/test_cpp_dec_float_serial.cpp +++ b/test/test_cpp_dec_float_serial.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/test/test_cpp_int.cpp b/test/test_cpp_int.cpp index ebc318f5c..df1e5252f 100644 --- a/test/test_cpp_int.cpp +++ b/test/test_cpp_int.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/test/test_cpp_int_conv.cpp b/test/test_cpp_int_conv.cpp index d5a8e2a33..18b9047ca 100644 --- a/test/test_cpp_int_conv.cpp +++ b/test/test_cpp_int_conv.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // #ifdef _MSC_VER diff --git a/test/test_cpp_int_deserial.cpp b/test/test_cpp_int_deserial.cpp index 3a5865a99..6d929c4df 100644 --- a/test/test_cpp_int_deserial.cpp +++ b/test/test_cpp_int_deserial.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/test/test_cpp_int_left_shift.cpp b/test/test_cpp_int_left_shift.cpp index 03af4d7ce..1dd1781d2 100644 --- a/test/test_cpp_int_left_shift.cpp +++ b/test/test_cpp_int_left_shift.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare results of truncated left shift to gmp, see: diff --git a/test/test_cpp_int_serial.cpp b/test/test_cpp_int_serial.cpp index 4b660fec2..0d873f466 100644 --- a/test/test_cpp_int_serial.cpp +++ b/test/test_cpp_int_serial.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/test/test_cpp_rat_serial.cpp b/test/test_cpp_rat_serial.cpp index 78926d462..2da0ce7e0 100644 --- a/test/test_cpp_rat_serial.cpp +++ b/test/test_cpp_rat_serial.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/test/test_exp.cpp b/test/test_exp.cpp index a1291d30f..250a8aeb5 100644 --- a/test/test_exp.cpp +++ b/test/test_exp.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_fixed_int.cpp b/test/test_fixed_int.cpp index 87a723998..329703dd4 100644 --- a/test/test_fixed_int.cpp +++ b/test/test_fixed_int.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/test/test_float128_serial.cpp b/test/test_float128_serial.cpp index 8966969fb..f76615636 100644 --- a/test/test_float128_serial.cpp +++ b/test/test_float128_serial.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/test/test_float_conversions.cpp b/test/test_float_conversions.cpp index a5ee8d1b5..a9aaab9de 100644 --- a/test/test_float_conversions.cpp +++ b/test/test_float_conversions.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2015 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // #ifdef _MSC_VER diff --git a/test/test_float_serial.hpp b/test/test_float_serial.hpp index 06dd03836..9d4ac7eec 100644 --- a/test/test_float_serial.hpp +++ b/test/test_float_serial.hpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2013 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #include #include diff --git a/test/test_generic_conv.cpp b/test/test_generic_conv.cpp index b11ce5bbc..a76a75df4 100644 --- a/test/test_generic_conv.cpp +++ b/test/test_generic_conv.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // #ifdef _MSC_VER diff --git a/test/test_gmp_conversions.cpp b/test/test_gmp_conversions.cpp index 3309b8a56..8ac66bf02 100644 --- a/test/test_gmp_conversions.cpp +++ b/test/test_gmp_conversions.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_log.cpp b/test/test_log.cpp index 6308fa015..eef66bc30 100644 --- a/test/test_log.cpp +++ b/test/test_log.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_miller_rabin.cpp b/test/test_miller_rabin.cpp index ec12ab8bd..8bfa4b68a 100644 --- a/test/test_miller_rabin.cpp +++ b/test/test_miller_rabin.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_mixed_cpp_bin_float.cpp b/test/test_mixed_cpp_bin_float.cpp index 11fde8323..5687c0bc6 100644 --- a/test/test_mixed_cpp_bin_float.cpp +++ b/test/test_mixed_cpp_bin_float.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_mixed_cpp_dec_float.cpp b/test/test_mixed_cpp_dec_float.cpp index 06455c605..b5b06ed24 100644 --- a/test/test_mixed_cpp_dec_float.cpp +++ b/test/test_mixed_cpp_dec_float.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_mixed_cpp_int.cpp b/test/test_mixed_cpp_int.cpp index b098e00be..fa7ba9934 100644 --- a/test/test_mixed_cpp_int.cpp +++ b/test/test_mixed_cpp_int.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/test/test_mixed_float.cpp b/test/test_mixed_float.cpp index 2b5aa6ffb..574c4ee14 100644 --- a/test/test_mixed_float.cpp +++ b/test/test_mixed_float.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/test/test_mixed_mpf_float.cpp b/test/test_mixed_mpf_float.cpp index 13e9e9bc7..392fffde7 100644 --- a/test/test_mixed_mpf_float.cpp +++ b/test/test_mixed_mpf_float.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_mixed_mpfr_float.cpp b/test/test_mixed_mpfr_float.cpp index ca64e905d..ab56aaff4 100644 --- a/test/test_mixed_mpfr_float.cpp +++ b/test/test_mixed_mpfr_float.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_mpc_conversions.cpp b/test/test_mpc_conversions.cpp index 8593fb20a..c62a290a4 100644 --- a/test/test_mpc_conversions.cpp +++ b/test/test_mpc_conversions.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_mpf_precisions.cpp b/test/test_mpf_precisions.cpp index 2ea334f0a..ba12e1480 100644 --- a/test/test_mpf_precisions.cpp +++ b/test/test_mpf_precisions.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_mpfi.cpp b/test/test_mpfi.cpp index ed1084724..ff0355e2a 100644 --- a/test/test_mpfi.cpp +++ b/test/test_mpfi.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_mpfi_precisions.cpp b/test/test_mpfi_precisions.cpp index 773c9231f..28710bcd0 100644 --- a/test/test_mpfi_precisions.cpp +++ b/test/test_mpfi_precisions.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_mpfr_conversions.cpp b/test/test_mpfr_conversions.cpp index 8f3194277..a9831f4a6 100644 --- a/test/test_mpfr_conversions.cpp +++ b/test/test_mpfr_conversions.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_mpfr_mpc_precisions.cpp b/test/test_mpfr_mpc_precisions.cpp index 559aa1816..4c96f757e 100644 --- a/test/test_mpfr_mpc_precisions.cpp +++ b/test/test_mpfr_mpc_precisions.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_native_integer.cpp b/test/test_native_integer.cpp index 2bb85df05..997d32ba9 100644 --- a/test/test_native_integer.cpp +++ b/test/test_native_integer.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2012 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Compare arithmetic results using fixed_int to GMP results. diff --git a/test/test_nothrow_cpp_int.cpp b/test/test_nothrow_cpp_int.cpp index e351dd89d..7eb29b202 100644 --- a/test/test_nothrow_cpp_int.cpp +++ b/test/test_nothrow_cpp_int.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////////////////////// -// Copyright 2std::declval()15 John Maddock. Distributed under the Boost -// Software License, Version 1.std::declval(). (See accompanying file -// LICENSE_1_std::declval().txt or copy at http://www.boost.org/LICENSE_1_std::declval().txt) +// Copyright 2015 John Maddock. 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) #include #include diff --git a/test/test_numeric_limits.cpp b/test/test_numeric_limits.cpp index fab1199d5..23046e8ff 100644 --- a/test/test_numeric_limits.cpp +++ b/test/test_numeric_limits.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_pow.cpp b/test/test_pow.cpp index 8ca410921..6f6d8b235 100644 --- a/test/test_pow.cpp +++ b/test/test_pow.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_sin.cpp b/test/test_sin.cpp index 21548018b..06a928dfb 100644 --- a/test/test_sin.cpp +++ b/test/test_sin.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_sinh.cpp b/test/test_sinh.cpp index bc1aa29ed..ce8619941 100644 --- a/test/test_sinh.cpp +++ b/test/test_sinh.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_sqrt.cpp b/test/test_sqrt.cpp index 232fc3aca..7eb1d352a 100644 --- a/test/test_sqrt.cpp +++ b/test/test_sqrt.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_tan.cpp b/test/test_tan.cpp index 0ec4c4c6f..cfeecae82 100644 --- a/test/test_tan.cpp +++ b/test/test_tan.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_tanh.cpp b/test/test_tanh.cpp index 78c5571fe..fe7eab526 100644 --- a/test/test_tanh.cpp +++ b/test/test_tanh.cpp @@ -2,7 +2,7 @@ // Copyright Christopher Kormanyos 2002 - 2011. // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // This work is based on an earlier work: // "Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations", diff --git a/test/test_test.cpp b/test/test_test.cpp index ce1bf27a4..59ae9fc76 100644 --- a/test/test_test.cpp +++ b/test/test_test.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2011 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt #ifdef _MSC_VER # define _SCL_SECURE_NO_WARNINGS diff --git a/test/test_unchecked_cpp_int.cpp b/test/test_unchecked_cpp_int.cpp index 8c13d5907..0e21ac9cf 100644 --- a/test/test_unchecked_cpp_int.cpp +++ b/test/test_unchecked_cpp_int.cpp @@ -1,7 +1,7 @@ /////////////////////////////////////////////////////////////// // Copyright 2017 John Maddock. 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_ +// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt // // Check results of truncated overflow.