mirror of
https://github.com/logos-storage/gnark-plonky2-verifier.git
synced 2026-01-04 06:03:12 +00:00
22 lines
377 B
Go
22 lines
377 B
Go
package fri
|
|
|
|
import gl "github.com/codex-storage/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
|
|
}
|