Leave prover_test untouched

This commit is contained in:
druiz0992
2020-05-03 20:07:39 +02:00
parent 2d45cb7039
commit 9ed6e14fad
2 changed files with 4 additions and 4 deletions

View File

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

View File

@@ -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) {