Type Alias Plonky3RoundConstants

Source
pub type Plonky3RoundConstants<F> = RoundConstants<F, POSEIDON2_WIDTH, BABY_BEAR_POSEIDON2_HALF_FULL_ROUNDS, BABY_BEAR_POSEIDON2_PARTIAL_ROUNDS>;

Aliased Type§

struct Plonky3RoundConstants<F> { /* private fields */ }

Implementations

Source§

impl<F, const WIDTH: usize, const HALF_FULL_ROUNDS: usize, const PARTIAL_ROUNDS: usize> RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>
where F: Field,

Source

pub fn new( beginning_full_round_constants: [[F; WIDTH]; HALF_FULL_ROUNDS], partial_round_constants: [F; PARTIAL_ROUNDS], ending_full_round_constants: [[F; WIDTH]; HALF_FULL_ROUNDS], ) -> RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>

Source

pub fn from_rng<R>( rng: &mut R, ) -> RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>

Trait Implementations§

Source§

impl<F: Field> From<Poseidon2Constants<F>> for Plonky3RoundConstants<F>

Source§

fn from(constants: Poseidon2Constants<F>) -> Self

Converts to this type from the input type.
Source§

impl<F, const WIDTH: usize, const HALF_FULL_ROUNDS: usize, const PARTIAL_ROUNDS: usize> Clone for RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>
where F: Clone + Field,

Source§

fn clone(&self) -> RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<F, const WIDTH: usize, const HALF_FULL_ROUNDS: usize, const PARTIAL_ROUNDS: usize> Debug for RoundConstants<F, WIDTH, HALF_FULL_ROUNDS, PARTIAL_ROUNDS>
where F: Debug + Field,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more