pub trait VerifierLayer<F: Field> {
// Required methods
fn layer_id(&self) -> LayerId;
fn get_claims(&self) -> Result<Vec<Claim<F>>>;
}Expand description
A verifier counterpart of a GKR Layer trait.
Required Methods§
Sourcefn get_claims(&self) -> Result<Vec<Claim<F>>>
fn get_claims(&self) -> Result<Vec<Claim<F>>>
Get the claims that this layer makes on other layers.