summaryrefslogtreecommitdiff
path: root/factor_info.go
diff options
context:
space:
mode:
Diffstat (limited to 'factor_info.go')
-rw-r--r--factor_info.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/factor_info.go b/factor_info.go
index 93cb9d2..6a19173 100644
--- a/factor_info.go
+++ b/factor_info.go
@@ -100,8 +100,8 @@ func (fi *FactorInfo) WriteTo(w io.Writer) {
}
func (fi *FactorInfo) WriteToCompact(w io.Writer) {
- fmt.Fprintf(w, "%d = %s | σ(n)/n: %.2f | τ(n)/n: %.3f | 2345: %s\n",
- fi.Radix, fi.PrimeFactorization, fi.Score, fi.TotativeRatio, fi.BasicRank)
+ fmt.Fprintf(w, "%d = %s | σ(n)/n: %.2f | τ(n)/n: %.3f\n",
+ fi.Radix, fi.PrimeFactorization, fi.Score, fi.TotativeRatio)
fmt.Fprintf(w, "Ln: %.2f", fi.Ln)
if fi.MTC != nil {
fmt.Fprintf(w, " | MTC: %d", *fi.MTC)