mirror of
https://github.com/logos-storage/gnark-plonky2-verifier.git
synced 2026-01-07 15:43:06 +00:00
21 lines
332 B
Go
21 lines
332 B
Go
package plonky2_verifier
|
|
|
|
import (
|
|
. "gnark-plonky2-verifier/field"
|
|
)
|
|
|
|
type NoopGate struct {
|
|
}
|
|
|
|
func NewNoopGate() *NoopGate {
|
|
return &NoopGate{}
|
|
}
|
|
|
|
func (g *NoopGate) Id() string {
|
|
return "NoopGate"
|
|
}
|
|
|
|
func (g *NoopGate) EvalUnfiltered(p *PlonkChip, vars EvaluationVars) []QuadraticExtension {
|
|
return []QuadraticExtension{}
|
|
}
|