Trait ark_poly_commit::data_structures::PCUniversalParams[][src]

pub trait PCUniversalParams: Clone + Debug + CanonicalSerialize + CanonicalDeserialize {
    fn max_degree(&self) -> usize;
}
Expand description

Defines the minimal interface for public params for any polynomial commitment scheme.

Required methods

Outputs the maximum degree supported by the committer key.

Implementors