pub trait PCPreparedCommitment<UNPREPARED: PCCommitment>: Clone {
    // Required method
    fn prepare(comm: &UNPREPARED) -> Self;
}
Expand description

Defines the minimal interface of prepared commitments for any polynomial commitment scheme.

Required Methods§

source

fn prepare(comm: &UNPREPARED) -> Self

prepare

Implementors§

source§

impl<E: Pairing> PCPreparedCommitment<Commitment<E>> for ark_poly_commit::sonic_pc::PreparedCommitment<E>

source§

impl<E: Pairing> PCPreparedCommitment<Commitment<E>> for ark_poly_commit::marlin::marlin_pc::PreparedCommitment<E>

source§

impl<G: AffineRepr> PCPreparedCommitment<Commitment<G>> for ark_poly_commit::ipa_pc::PreparedCommitment<G>