(b *testing.B)
| 64 | } |
| 65 | |
| 66 | func BenchmarkDefaultPolynomial(b *testing.B) { |
| 67 | for i := 0; i < b.N; i++ { |
| 68 | DefaultPolynomial(big.NewInt(535))(big.NewInt(11235)) |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | func BenchmarkRho(b *testing.B) { |
| 73 | for i := 0; i < b.N; i++ { |
nothing calls this directly
no test coverage detected