(b *testing.B)
| 70 | } |
| 71 | |
| 72 | func BenchmarkRho(b *testing.B) { |
| 73 | for i := 0; i < b.N; i++ { |
| 74 | _, err := PollardsRhoFactorization(big.NewInt(535), DefaultPolynomial) |
| 75 | if err != nil { |
| 76 | return |
| 77 | } |
| 78 | } |
| 79 | } |
nothing calls this directly
no test coverage detected