mirror of
https://github.com/logos-storage/gnark-plonky2-verifier.git
synced 2026-01-03 21:53:10 +00:00
22 lines
376 B
Go
22 lines
376 B
Go
package fri
|
|
|
|
import gl "github.com/succinctlabs/gnark-plonky2-verifier/goldilocks"
|
|
|
|
type BatchInfo struct {
|
|
Point gl.QuadraticExtensionVariable
|
|
Polynomials []PolynomialInfo
|
|
}
|
|
|
|
type InstanceInfo struct {
|
|
Oracles []OracleInfo
|
|
Batches []BatchInfo
|
|
}
|
|
|
|
type OpeningBatch struct {
|
|
Values []gl.QuadraticExtensionVariable
|
|
}
|
|
|
|
type Openings struct {
|
|
Batches []OpeningBatch
|
|
}
|