1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-04 17:57:03 +00:00

fixed the incorrect negative digits in bignum::randomized_div

This commit is contained in:
Zeno Rogue 2020-01-02 16:57:45 +01:00
parent 3ee0956fd7
commit 572e3cb398

View File

@ -429,7 +429,7 @@ bignum bignum::randomized_div(int x) const {
// strange compiler buug:
// if I do / and %, function 'divmod' is called, and it complains on launch that divmod is unimplemented
res.digits[i] = carry / x;
carry -= res.digits[i] * x;
carry -= res.digits[i] * (long long)(x);
}
while(isize(res.digits) && res.digits.back() == 0) res.digits.pop_back();
if(rand() % x < carry) res += 1;