Browse Source

Leave prover_test untouched

feature/tables
druiz0992 4 years ago
parent
commit
9ed6e14fad
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      prover/gextra_test.go
  2. +2
    -2
      prover/prover_test.go

+ 2
- 2
prover/gextra_test.go

@ -11,8 +11,8 @@ import (
)
const (
N1 = 500
N2 = 500
N1 = 50000
N2 = 5000
)
func randomBigIntArray(n int) []*big.Int{

+ 2
- 2
prover/prover_test.go

@ -16,8 +16,8 @@ import (
func TestCircuitsGenerateProof(t *testing.T) {
testCircuitGenerateProof(t, "circuit1k") // 1000 constraints
testCircuitGenerateProof(t, "circuit5k") // 5000 constraints
testCircuitGenerateProof(t, "circuit10k") // 10000 constraints
testCircuitGenerateProof(t, "circuit20k") // 20000 constraints
//testCircuitGenerateProof(t, "circuit10k") // 10000 constraints
//testCircuitGenerateProof(t, "circuit20k") // 20000 constraints
}
func testCircuitGenerateProof(t *testing.T, circuit string) {

Loading…
Cancel
Save