summaryrefslogtreecommitdiff
path: root/factors/score.go
diff options
context:
space:
mode:
Diffstat (limited to 'factors/score.go')
-rw-r--r--factors/score.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/factors/score.go b/factors/score.go
index c777d11..00988c9 100644
--- a/factors/score.go
+++ b/factors/score.go
@@ -34,7 +34,7 @@ func Score(n uint) float64 {
return float64(factorSum) / float64(n)
}
-const maxSmall = 1 << 28 - 1
+const maxSmall = 1<<28 - 1
func bigScore(n uint) float64 {
factorSum := new(big.Int)