-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
43 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package ExpanderCompilerCollection | ||
|
||
import "github.com/PolyhedraZK/ExpanderCompilerCollection/ecgo" | ||
|
||
type API = ecgo.API | ||
type CompileResult = ecgo.CompileResult | ||
|
||
var Compile = ecgo.Compile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package builder | ||
|
||
import "github.com/PolyhedraZK/ExpanderCompilerCollection/ecgo/builder" | ||
|
||
var MemorizedVoidFunc = builder.MemorizedVoidFunc | ||
var Memorized0DFunc = builder.Memorized0DFunc | ||
var Memorized1DFunc = builder.Memorized1DFunc | ||
var Memorized2DFunc = builder.Memorized2DFunc | ||
var Memorized3DFunc = builder.Memorized3DFunc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package bn254 | ||
|
||
import "github.com/PolyhedraZK/ExpanderCompilerCollection/ecgo/field/bn254" | ||
|
||
var ScalarField = bn254.ScalarField |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package field |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package gf2 | ||
|
||
import "github.com/PolyhedraZK/ExpanderCompilerCollection/ecgo/field/gf2" | ||
|
||
var ScalarField = gf2.ScalarField |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package m31 | ||
|
||
import "github.com/PolyhedraZK/ExpanderCompilerCollection/ecgo/field/m31" | ||
|
||
var ScalarField = m31.ScalarField |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ go 1.21.6 | |
|
||
use ( | ||
. | ||
./examples | ||
./ecgo/examples | ||
) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package test | ||
|
||
import "github.com/PolyhedraZK/ExpanderCompilerCollection/ecgo/test" | ||
|
||
var CheckCircuit = test.CheckCircuit |