1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-01 21:47:46 +00:00

factor::table: Remove obsolete, commented code

This commit is contained in:
nicoo 2020-05-24 15:41:23 +02:00
parent 169740629b
commit e1a6dbe619

View file

@ -28,14 +28,5 @@ pub(crate) fn factor(mut num: u64) -> (Factors, u64) {
}
}
// do we still have more factoring to do?
// Decide whether to use Pollard Rho or slow divisibility based on
// number's size:
//if num >= 1 << 63 {
// number is too big to use rho pollard without overflowing
//trial_division_slow(num, factors);
//} else if num > 1 {
// number is still greater than 1, but not so big that we have to worry
(factors, num)
//}
}