Skip to content

Commit

Permalink
Remove extraneous prints
Browse files Browse the repository at this point in the history
  • Loading branch information
wackywendell committed Dec 26, 2019
1 parent 387f7e4 commit 26e0a5c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ impl PrimeSet {
let mut lst: Vec<u64> = Vec::new();
for p in self.iter() {
while curn % p == 0 {
println!("Pushing {} ({} / {})", p, curn, n);
lst.push(p);
curn /= p;
if curn == 1 {
Expand All @@ -239,7 +238,6 @@ impl PrimeSet {
}

if p * p > curn {
println!("Final push {} ({} / {})", p, curn, n);
lst.push(curn);
return lst;
}
Expand Down

0 comments on commit 26e0a5c

Please sign in to comment.