1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
///////////////////////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2019 - 2024.
// 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 <iomanip>
#include <iostream>
#include <examples/example_uintwide_t.h>
#include <test/test_uintwide_t.h>
#if defined(WIDE_INTEGER_NAMESPACE)
auto WIDE_INTEGER_NAMESPACE::math::wide_integer::test_uintwide_t_examples() -> bool
#else
auto ::math::wide_integer::test_uintwide_t_examples() -> bool
#endif
{
bool result_is_ok = true;
result_is_ok = (math::wide_integer::example000_numeric_limits () && result_is_ok); std::cout << "result_is_ok after example000_numeric_limits : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example000a_builtin_convert () && result_is_ok); std::cout << "result_is_ok after example000a_builtin_convert : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example001_mul_div () && result_is_ok); std::cout << "result_is_ok after example001_mul_div : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example001a_div_mod () && result_is_ok); std::cout << "result_is_ok after example001a_div_mod : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example002_shl_shr () && result_is_ok); std::cout << "result_is_ok after example002_shl_shr : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example003_sqrt () && result_is_ok); std::cout << "result_is_ok after example003_sqrt : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example003a_cbrt () && result_is_ok); std::cout << "result_is_ok after example003a_cbrt : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example004_rootk_pow () && result_is_ok); std::cout << "result_is_ok after example004_rootk_pow : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example005_powm () && result_is_ok); std::cout << "result_is_ok after example005_powm : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example005a_pow_factors_of_p99() && result_is_ok); std::cout << "result_is_ok after example005a_pow_factors_of_p99: " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example006_gcd () && result_is_ok); std::cout << "result_is_ok after example006_gcd : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example007_random_generator () && result_is_ok); std::cout << "result_is_ok after example007_random_generator : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example008_miller_rabin_prime () && result_is_ok); std::cout << "result_is_ok after example008_miller_rabin_prime : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example008a_miller_rabin_prime() && result_is_ok); std::cout << "result_is_ok after example008a_miller_rabin_prime: " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example009_timed_mul () && result_is_ok); std::cout << "result_is_ok after example009_timed_mul : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example009a_timed_mul_4_by_4 () && result_is_ok); std::cout << "result_is_ok after example009a_timed_mul_4_by_4 : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example009b_timed_mul_8_by_8 () && result_is_ok); std::cout << "result_is_ok after example009b_timed_mul_8_by_8 : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example010_uint48_t () && result_is_ok); std::cout << "result_is_ok after example010_uint48_t : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example011_uint24_t () && result_is_ok); std::cout << "result_is_ok after example011_uint24_t : " << std::boolalpha << result_is_ok << std::endl;
#if !(defined(_MSC_VER) && defined(_DEBUG))
result_is_ok = (math::wide_integer::example012_rsa_crypto () && result_is_ok); std::cout << "result_is_ok after example012_rsa_crypto : " << std::boolalpha << result_is_ok << std::endl;
#endif
result_is_ok = (math::wide_integer::example013_ecdsa_sign_verify () && result_is_ok); std::cout << "result_is_ok after example013_ecdsa_sign_verify : " << std::boolalpha << result_is_ok << std::endl;
result_is_ok = (math::wide_integer::example014_pi_spigot_wide () && result_is_ok); std::cout << "result_is_ok after example014_pi_spigot_wide : " << std::boolalpha << result_is_ok << std::endl;
return result_is_ok;
}
|