Skip to content

Commit

Permalink
remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
kustosz committed Dec 3, 2024
1 parent 5983975 commit 07cdbaf
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions skyscraper_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package skyscraper

import (
"fmt"
"github.com/consensys/gnark-crypto/ecc"
"github.com/consensys/gnark/backend"
"github.com/consensys/gnark/frontend"
Expand Down Expand Up @@ -75,7 +74,6 @@ func (c *TestBarC) Define(api frontend.API) error {
func TestBar(t *testing.T) {
assert := test.NewAssert(t)
for wordSize := 1; wordSize <= 2; wordSize++ {
fmt.Printf("wordSize: %d\n", wordSize)
assert.CheckCircuit(&TestBarC{WordSize: wordSize}, test.WithCurves(ecc.BN254), test.WithBackends(backend.GROTH16),
test.WithValidAssignment(&TestBarC{wordSize, 0, 0}),
test.WithValidAssignment(&TestBarC{wordSize, 1, bigIntFromString("680564733841876926926749214863536422912")}),
Expand Down

0 comments on commit 07cdbaf

Please sign in to comment.