pub struct Evaluations<F: PrimeField> {
pub g_1_eval: F,
pub g_a_evals: Vec<F>,
pub g_b_evals: Vec<F>,
pub g_c_evals: Vec<F>,
}
Fields§
§g_1_eval: F
Evaluation of g_1
at beta
.
g_a_evals: Vec<F>
Evaluation of g_a_i
’s at beta
.
g_b_evals: Vec<F>
Evaluation of g_b_i
’s at gamma
.
g_c_evals: Vec<F>
Evaluation of g_c_i
’s at gamma
.
Implementations§
Source§impl<F: PrimeField> Evaluations<F>
impl<F: PrimeField> Evaluations<F>
pub fn to_field_elements(&self) -> Vec<F>
Trait Implementations§
Source§impl<F: Clone + PrimeField> Clone for Evaluations<F>
impl<F: Clone + PrimeField> Clone for Evaluations<F>
Source§fn clone(&self) -> Evaluations<F>
fn clone(&self) -> Evaluations<F>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<F: Debug + PrimeField> Debug for Evaluations<F>
impl<F: Debug + PrimeField> Debug for Evaluations<F>
Source§impl<F: PartialEq + PrimeField> PartialEq for Evaluations<F>
impl<F: PartialEq + PrimeField> PartialEq for Evaluations<F>
Source§impl<F: PrimeField> Valid for Evaluations<F>
impl<F: PrimeField> Valid for Evaluations<F>
fn check(&self) -> Result<(), SerializationError>
fn batch_check<'a>(
batch: impl Iterator<Item = &'a Self> + Send,
) -> Result<(), SerializationError>where
Self: 'a,
impl<F: Eq + PrimeField> Eq for Evaluations<F>
impl<F: PrimeField> StructuralPartialEq for Evaluations<F>
Auto Trait Implementations§
impl<F> Freeze for Evaluations<F>where
F: Freeze,
impl<F> RefUnwindSafe for Evaluations<F>where
F: RefUnwindSafe,
impl<F> Send for Evaluations<F>
impl<F> Sync for Evaluations<F>
impl<F> Unpin for Evaluations<F>where
F: Unpin,
impl<F> UnwindSafe for Evaluations<F>where
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.