Parcourir la source

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

is zero.
legacy
Sam Hocevar sam il y a 13 ans
Parent
révision
908b2b3b95
1 fichiers modifiés avec 7 ajouts et 0 suppressions
  1. +7
    -0
      src/real.cpp

+ 7
- 0
src/real.cpp Voir le fichier

@@ -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;


Chargement…
Annuler
Enregistrer