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:
parent
169740629b
commit
e1a6dbe619
1 changed files with 0 additions and 9 deletions
|
@ -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)
|
||||
//}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue