- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 boost::multiprecision 库进行浮点(或者在那种情况下,固定)点运算。但是,我无法通过以下方式检测潜在的溢出:
typedef boost::multiprecision::number<
boost::multiprecision::cpp_dec_float<50>
> flp_type;
typedef boost::multiprecision::number<
boost::multiprecision::cpp_dec_float<100>
> safe_flp_type;
flp_type _1 = std::numeric_limits<flp_type>::max();
flp_type _2("1");
flp_type _3 = std::numeric_limits<flp_type>::max();
flp_type dtNew;
// Here is the check
safe_flp_type _res = safe_flp_type(_1) + _2;
// **This condition is true for addition of _1 and _3,**
// but fails for _1 + _2
if( (_res > std::numeric_limits<flp_type>::max()) // overflow
||(_res < std::numeric_limits<flp_type>::min())) // underflow
{
BOOST_THROW_EXCEPTION(OverUnderflow() << SpecificErrInfo(L"Attempted floating point over/underflow"));
}
dtNew = _1 + _2;
不应该甚至为类型的 max() 加 1 触发异常的抛出?我也检查了溢出后的底层类型,不是cpp_dec_float_inf,还是cpp_dec_float_finite。此外,dtNew 的值等于 std::numeric_limits::max()
我是不是完全误解了这个概念?如果是这样,防止 boost::multiprecision::cpp_dec_float<50> 溢出的正确方法是什么?
最佳答案
好的,我已经调试到库中,“错误”发生在这一行:
// Check if the operation is out of range, requiring special handling.
if(v.iszero() || (ofs_exp > max_delta_exp))
{
// Result is *this unchanged since v is negligible compared to *this.
return *this;
}
该类型的numeric_limit加1可以忽略不计,所以加法被舍弃。因此它不是 >=。
我的印象是该类型是作为固定点实现的(考虑到这个名字很愚蠢,我知道),但事实并非如此。这是来自boost doc
Operations involving cpp_dec_float are always truncating. However, note that since their are guard digits in effect, in practice this has no real impact on accuracy for most use cases.
真可惜,多精度库似乎没有固定的精度类型。
但是,为了检查 cpp_dec_float 中的溢出,可以这样做:
dtNew = _1 * _2;
if(dtNew.backend().isinf())
{
BOOST_THROW_EXCEPTION(OverUnderflow() << SpecificErrInfo(L"Attempted floating point over/underflow"));
}
关于c++ - boost::multiprecision::cpp_dec_float_50 溢出检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18727896/
在 rng 中使用固定种子时,如果精度变化,结果将无法重现。即,如果更改模板参数 cpp_dec_float并运行以下代码,会看到不同的输出(对于精度的每次变化)。 #include #includ
我一直在关注 documentation from the boost library生成多精度随机整数,但在文档中没有提到如何设置种子。 我不知道如何在不出现编译错误的情况下设置种子。 #inclu
我需要将IPv6字符串地址转换为boost::multiprecision::uint128_t 对于IPv4,我使用以下算法: uint32_t byte1 = 0, byte2 = 0, byte
自从调整了一些代码以启用多精度后,我的一些单元测试开始失败。头文件: #ifndef SCRATCH_UNITTESTBOOST_INCLUDED #define SCRATCH_UNITTESTBO
我正在尝试使用 boost::multiprecision 库进行浮点(或者在那种情况下,固定)点运算。但是,我无法通过以下方式检测潜在的溢出: typedef boost::multiprecisi
如果我有: 字符缓冲区[16]; 如何将其原始字节转换为: boost::multiprecision::uint128_t ? 我尝试进行标准的 C 风格转换: uint128_t myInt =
我正在使用 boost::multiprecision 来获得固定但任意精度的整数。我打算使用 number> .第一个明显的问题是: 此数据类型是否具有给定精度的任何无符号整数的标准位模式?我听说有
我使用 boost::multiprecision::uint128_t 类型来对 128 位值执行按位运算。但是,我无法将 128 位值写入二进制文件。特别是需要用零填充值。 例如,如果 uint1
http://www.boost.org/doc/libs/1_53_0/libs/multiprecision/doc/html/index.html 我刚刚开始探索这个图书馆。似乎没有办法将 cp
我读过 boost::multiprecision documentation : Depending upon the number type, precision may be arbitrari
如何将字符串转换为“boost::multiprecision::cpp_int”? 此外,我有一个 .txt 文件,其中包含 100 个数字,每个数字 50 个数字,我使用 ifstream 将它们
我需要以任意精度获取一个值的散列值(来自 Boost.Multiprecision);我用 cpp_int后端。我想出了以下代码: boost::multiprecision::cpp_int x0
考虑以下使用 boost 创建多精度 float “a”的代码。 如何使用boost库调用三角函数?比如我希望计算sin(a)。 #include #include "boost/multiprec
我正在尝试转换 boost::multiprecision::cpp_dec_float_x到 boost::multiprecision::uintx_t .所以基本上是 boost bigreal
我尝试创建一个派生自 boost::multiprecision::mpz_int 的类并让它继承基类构造函数: #include using namespace boost::multipreci
我需要从 boost::multiprecision::int128_t 转换至 double . 对于较小的整数,我使用: template flt_t as_flt() const { ret
我正在尝试使用Ramanujan's公式为浮点后的任意位数计算我的大学项目之一的pi。对于这项工作,我使用的boost::multiprecision库只是我已经安装在计算机上的mpfr和mpir的包
关于 this answer ,有一个使用 boost::multiprecision 和 boost::random 的最小示例。 当我使用种子时,我正在努力解决这个例子: #include #i
我有一些模板代码,编译器可以尾调用优化大多数数据类型,但不能优化其他数据类型。代码实现pow() template void powRecurse(T& x, U& y, T& acc) { i
我需要两个函数: std::vector bigint_to_bytes(cpp_int a); cpp_int bytes_to_bigint(std::vector const& a); goog
我是一名优秀的程序员,十分优秀!