clean up params

This commit is contained in:
M Alghazwi 2025-01-09 10:35:25 +01:00
parent 1a46bd085d
commit 5d2237cea8
No known key found for this signature in database
GPG Key ID: 646E567CAD7DB607

View File

@ -1,3 +1,4 @@
use std::marker::PhantomData;
use plonky2::hash::poseidon::PoseidonHash;
use plonky2::plonk::config::PoseidonGoldilocksConfig;
use plonky2::plonk::proof::ProofWithPublicInputs;
@ -12,15 +13,3 @@ pub type C = PoseidonGoldilocksConfig;
pub type H = PoseidonHash;
pub type Plonky2Proof = ProofWithPublicInputs<F, C, D>;
pub struct RecursionTreeParams{
pub tree_width: usize,
}
impl RecursionTreeParams {
pub fn new(tree_width: usize) -> Self{
Self{
tree_width
}
}
}