浏览代码

real: fix a bug in the real number multiplication when one of the arguments

is zero.
legacy
Sam Hocevar sam 13 年前
父节点
当前提交
908b2b3b95
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. +7
    -0
      src/real.cpp

+ 7
- 0
src/real.cpp 查看文件

@@ -263,6 +263,13 @@ real real::operator *(real const &x) const
{
real ret;

if (m_signexp << 1 == 0 || x.m_signexp << 1 == 0)
{
ret = (m_signexp << 1 == 0) ? *this : x;
ret.m_signexp ^= x.m_signexp & 0x80000000u;
return ret;
}

ret.m_signexp = (m_signexp ^ x.m_signexp) & 0x80000000u;
int e = (m_signexp & 0x7fffffffu) - (1 << 30) + 1
+ (x.m_signexp & 0x7fffffffu) - (1 << 30) + 1;


正在加载...
取消
保存