Skip to content

Commit

Permalink
Revert "in -> for"
Browse files Browse the repository at this point in the history
This reverts commit 7c3d5a4.
  • Loading branch information
WrathfulSpatula committed Feb 6, 2025
1 parent 7c3d5a4 commit 2a9fc94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wheel_tuner.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
# When counting, 1 in every p numbers is a multiple of p.
# Do we have FEWER smooth number multiples than this? Then this is a GOOD candidate to remove from sieving.
# Do we have MORE smooth number multiples than this? Then this is a BAD candidate to remove from sieving.
# So we INCLUDE the numbers that are GOOD candidates for wheel factorization (so they DON'T occur in sieving),
# and we EXCLUDE the numbers that are BAD candidates for wheel factorization (so they DO occur in sieving).
# So we INCLUDE the numbers that are GOOD candidates in wheel factorization (so they DON'T occur in sieving),
# and we EXCLUDE the numbers that are BAD candidates in wheel factorization (so they DO occur in sieving).
print("Prime = " + str(p) + ", quality = " + (str((1 / p) / (mult_count / smooth_num_count)) if mult_count else "MAX"))

print("Any low quality score (particularly less than 1.0, but even higher) might be worth excluding.")
Expand Down

0 comments on commit 2a9fc94

Please sign in to comment.