From: Gero Peterhoff (g.peterhoff_at_[hidden])
Date: 2023-04-20 15:51:47


Hi John,
some functions do not work with multiprecision-integer-types, e.g.

using T = boost::multiprecision::int256_t;
using ::std::isinf;

const auto x = T{5};
const auto y = isinf(x); // ct error
std::cout << y << std::endl;

gives a CT error.


cu
Gero