mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-05-03 16:53:07 +00:00
Minor
This commit is contained in:
parent
1686cb021f
commit
7820ba965c
@ -191,13 +191,13 @@ mod tests {
|
|||||||
)?;
|
)?;
|
||||||
verify(stark, proof.clone(), &config)?;
|
verify(stark, proof.clone(), &config)?;
|
||||||
|
|
||||||
recursive_proof::<F, C, S, C, D>(stark, proof, &config, true, true)
|
recursive_proof::<F, C, S, C, D>(stark, proof, &config, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn recursive_proof<
|
fn recursive_proof<
|
||||||
F: RichField + Extendable<D>,
|
F: RichField + Extendable<D>,
|
||||||
C: GenericConfig<D, F = F>,
|
C: GenericConfig<D, F = F>,
|
||||||
S: Stark<F, D>,
|
S: Stark<F, D> + Copy,
|
||||||
InnerC: GenericConfig<D, F = F>,
|
InnerC: GenericConfig<D, F = F>,
|
||||||
const D: usize,
|
const D: usize,
|
||||||
>(
|
>(
|
||||||
|
|||||||
@ -14,7 +14,7 @@ use crate::vars::StarkEvaluationVars;
|
|||||||
|
|
||||||
/// Represents a STARK system.
|
/// Represents a STARK system.
|
||||||
// TODO: Add a `constraint_degree` fn that returns the maximum constraint degree.
|
// TODO: Add a `constraint_degree` fn that returns the maximum constraint degree.
|
||||||
pub trait Stark<F: RichField + Extendable<D>, const D: usize>: Sync + Copy {
|
pub trait Stark<F: RichField + Extendable<D>, const D: usize>: Sync {
|
||||||
/// The total number of columns in the trace.
|
/// The total number of columns in the trace.
|
||||||
const COLUMNS: usize;
|
const COLUMNS: usize;
|
||||||
/// The number of public inputs.
|
/// The number of public inputs.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user