fixed: I have forgotten to remove rounding down from division (Big::div)

git-svn-id: svn://ttmath.org/publicrep/ttmath/trunk@264 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
Tomasz Sowa 2009-12-14 15:54:23 +00:00
parent 418db51f46
commit 31563ce343
1 changed files with 1 additions and 1 deletions

View File

@ -1351,7 +1351,7 @@ public:
if( round && (man1.table[man-1] & TTMATH_UINT_HIGHEST_BIT) != 0 )
{
bool is_half = CheckGreaterOrEqualHalf(man1.table, man);
c += RoundHalfToEven(is_half, true);
c += RoundHalfToEven(is_half);
}
if( IsSign() == ss2.IsSign() )