removed debug comment

This commit is contained in:
Zeno Rogue 2020-03-07 23:45:16 +01:00
parent 550d711f66
commit 62c91688fc
1 changed files with 0 additions and 1 deletions

View File

@ -433,7 +433,6 @@ bignum bignum::randomized_div(int x) const {
}
while(isize(res.digits) && res.digits.back() == 0) res.digits.pop_back();
if(rand() % x < carry) res += 1;
// println(hlog, get_str(100), " / ", x, " = ", res.get_str(100));
return res;
}