Fix a comment

This commit is contained in:
Victor Zverovich 2018-05-28 17:21:07 -07:00
parent 4e4b8570e5
commit 8dc2360b11

View File

@ -327,8 +327,8 @@ inline fp operator-(fp x, fp y) {
return fp(x.f - y.f, x.e);
}
// Computes an fp number r with r.f = x.f * y.f / pow(2, 32) rounded to nearest
// with half-up tie breaking, r.e = x.e + y.e + 32. Result may not be normalized.
// Computes an fp number r with r.f = x.f * y.f / pow(2, 64) rounded to nearest
// with half-up tie breaking, r.e = x.e + y.e + 64. Result may not be normalized.
fp operator*(fp x, fp y);
// Returns cached power (of 10) c_k = c_k.f * pow(2, c_k.e) such that its