Type Alias FpChip

Source
pub type FpChip<'range, F> = FpChip<'range, F, Fq>;

Aliased Type§

struct FpChip<'range, F> {
    pub range: &'range RangeChip<F>,
    pub limb_bits: usize,
    pub num_limbs: usize,
    pub num_limbs_bits: usize,
    pub num_limbs_log2_ceil: usize,
    pub limb_bases: Vec<F>,
    pub limb_base_big: BigInt,
    pub limb_mask: BigUint,
    pub p: BigInt,
    pub p_limbs: Vec<F>,
    pub p_native: F,
    pub native_modulus: BigUint,
    /* private fields */
}

Fields§

§range: &'range RangeChip<F>§limb_bits: usize§num_limbs: usize§num_limbs_bits: usize§num_limbs_log2_ceil: usize§limb_bases: Vec<F>§limb_base_big: BigInt§limb_mask: BigUint§p: BigInt§p_limbs: Vec<F>§p_native: F§native_modulus: BigUint

Implementations

Source§

impl<'range, F: BigPrimeField, Fp: BigPrimeField> FpChip<'range, F, Fp>

Source

pub fn new( range: &'range RangeChip<F>, limb_bits: usize, num_limbs: usize, ) -> Self

Source

pub fn enforce_less_than_p(&self, ctx: &mut Context<F>, a: ProperCrtUint<F>)

Source

pub fn load_constant_uint( &self, ctx: &mut Context<F>, a: BigUint, ) -> ProperCrtUint<F>

Trait Implementations

Source§

impl<'range, F: Clone + BigPrimeField, Fp: Clone + BigPrimeField> Clone for FpChip<'range, F, Fp>

Source§

fn clone(&self) -> FpChip<'range, F, Fp>

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<'range, F: Debug + BigPrimeField, Fp: Debug + BigPrimeField> Debug for FpChip<'range, F, Fp>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<'range, F: BigPrimeField, Fp: BigPrimeField> FieldChip<F> for FpChip<'range, F, Fp>

Source§

fn range_check( &self, ctx: &mut Context<F>, a: impl Into<ProperCrtUint<F>>, max_bits: usize, )

§Assumptions
  • max_bits <= n * k where n = self.limb_bits and k = self.num_limbs
  • a.truncation.limbs.len() = self.num_limbs
Source§

fn is_soft_zero( &self, ctx: &mut Context<F>, a: impl Into<ProperCrtUint<F>>, ) -> AssignedValue<F>

Returns 1 iff a is 0 as a BigUint. This means that even if a is 0 modulo p, this may return 0.

Source§

fn is_soft_nonzero( &self, ctx: &mut Context<F>, a: impl Into<ProperCrtUint<F>>, ) -> AssignedValue<F>

Given proper CRT integer a, returns 1 iff a < modulus::<F>() and a != 0 as integers

§Assumptions
  • a is proper representation of BigUint
Source§

const PRIME_FIELD_NUM_BITS: u32 = Fp::NUM_BITS

Source§

type UnsafeFieldPoint = CRTInteger<F>

A representation of a field element that is used for intermediate computations. The representation can have “overflows” (e.g., overflow limbs or negative limbs).
Source§

type FieldPoint = ProperCrtUint<F>

The “proper” representation of a field element. Allowed to be a non-unique representation of a field element (e.g., can be greater than modulus)
Source§

type ReducedFieldPoint = Reduced<ProperCrtUint<F>, Fp>

A proper representation of field elements that guarantees a unique representation of each field element. Typically this means Uints that are less than the modulus.
Source§

type FieldType = Fp

A type implementing Field trait to help with witness generation (for example with inverse)
Source§

type RangeChip = RangeChip<F>

Source§

fn native_modulus(&self) -> &BigUint

Source§

fn range(&self) -> &'range Self::RangeChip

Source§

fn limb_bits(&self) -> usize

Source§

fn get_assigned_value(&self, x: &CRTInteger<F>) -> Fp

Source§

fn load_private(&self, ctx: &mut Context<F>, a: Fp) -> ProperCrtUint<F>

Assigns fe as private witness. Note that the witness may not be constrained to be a unique representation of the field element fe.
Source§

fn load_constant(&self, ctx: &mut Context<F>, a: Fp) -> ProperCrtUint<F>

Assigns fe as constant.
Source§

fn add_no_carry( &self, ctx: &mut Context<F>, a: impl Into<CRTInteger<F>>, b: impl Into<CRTInteger<F>>, ) -> CRTInteger<F>

Source§

fn add_constant_no_carry( &self, ctx: &mut Context<F>, a: impl Into<CRTInteger<F>>, c: Fp, ) -> CRTInteger<F>

output: a + c
Source§

fn sub_no_carry( &self, ctx: &mut Context<F>, a: impl Into<CRTInteger<F>>, b: impl Into<CRTInteger<F>>, ) -> CRTInteger<F>

Source§

fn negate(&self, ctx: &mut Context<F>, a: ProperCrtUint<F>) -> ProperCrtUint<F>

Source§

fn scalar_mul_no_carry( &self, ctx: &mut Context<F>, a: impl Into<CRTInteger<F>>, c: i64, ) -> CRTInteger<F>

a * c
Source§

fn scalar_mul_and_add_no_carry( &self, ctx: &mut Context<F>, a: impl Into<CRTInteger<F>>, b: impl Into<CRTInteger<F>>, c: i64, ) -> CRTInteger<F>

a * c + b
Source§

fn mul_no_carry( &self, ctx: &mut Context<F>, a: impl Into<CRTInteger<F>>, b: impl Into<CRTInteger<F>>, ) -> CRTInteger<F>

Source§

fn check_carry_mod_to_zero(&self, ctx: &mut Context<F>, a: CRTInteger<F>)

Source§

fn carry_mod(&self, ctx: &mut Context<F>, a: CRTInteger<F>) -> ProperCrtUint<F>

Source§

fn enforce_less_than( &self, ctx: &mut Context<F>, a: ProperCrtUint<F>, ) -> Reduced<ProperCrtUint<F>, Fp>

Constrains that a is a reduced representation and returns the wrapped a.
Source§

fn is_zero( &self, ctx: &mut Context<F>, a: impl Into<ProperCrtUint<F>>, ) -> AssignedValue<F>

Source§

fn is_equal_unenforced( &self, ctx: &mut Context<F>, a: Reduced<ProperCrtUint<F>, Fp>, b: Reduced<ProperCrtUint<F>, Fp>, ) -> AssignedValue<F>

Source§

fn assert_equal( &self, ctx: &mut Context<F>, a: impl Into<ProperCrtUint<F>>, b: impl Into<ProperCrtUint<F>>, )

Source§

fn gate(&self) -> &<Self::RangeChip as RangeInstructions<F>>::Gate

Source§

fn load_private_reduced( &self, ctx: &mut Context<F>, fe: Self::FieldType, ) -> Self::ReducedFieldPoint

Assigns fe as private witness and contrains the witness to be in reduced form.
Source§

fn is_equal( &self, ctx: &mut Context<F>, a: impl Into<Self::FieldPoint>, b: impl Into<Self::FieldPoint>, ) -> AssignedValue<F>

Source§

fn mul( &self, ctx: &mut Context<F>, a: impl Into<Self::UnsafeFieldPoint>, b: impl Into<Self::UnsafeFieldPoint>, ) -> Self::FieldPoint

If using UnsafeFieldPoint, make sure multiplication does not cause overflow.
Source§

fn divide( &self, ctx: &mut Context<F>, a: impl Into<Self::FieldPoint>, b: impl Into<Self::FieldPoint>, ) -> Self::FieldPoint

Constrains that b is nonzero as a field element and then returns a / b.
Source§

fn divide_unsafe( &self, ctx: &mut Context<F>, a: impl Into<Self::UnsafeFieldPoint>, b: impl Into<Self::UnsafeFieldPoint>, ) -> Self::FieldPoint

Returns a / b without constraining b to be nonzero. Read more
Source§

fn neg_divide( &self, ctx: &mut Context<F>, a: impl Into<Self::FieldPoint>, b: impl Into<Self::FieldPoint>, ) -> Self::FieldPoint

Constrains that b is nonzero as a field element and then returns -a / b.
Source§

fn neg_divide_unsafe( &self, ctx: &mut Context<F>, a: impl Into<Self::UnsafeFieldPoint>, b: impl Into<Self::UnsafeFieldPoint>, ) -> Self::FieldPoint

Source§

impl<F: BigPrimeField, Fp: BigPrimeField> PrimeFieldChip<F> for FpChip<'_, F, Fp>

Source§

impl<F: BigPrimeField, Fp: BigPrimeField> Selectable<F, CRTInteger<F>> for FpChip<'_, F, Fp>

Source§

fn select( &self, ctx: &mut Context<F>, a: CRTInteger<F>, b: CRTInteger<F>, sel: AssignedValue<F>, ) -> CRTInteger<F>

Source§

fn select_by_indicator( &self, ctx: &mut Context<F>, a: &impl AsRef<[CRTInteger<F>]>, coeffs: &[AssignedValue<F>], ) -> CRTInteger<F>

Source§

impl<F: BigPrimeField, Fp: BigPrimeField> Selectable<F, ProperCrtUint<F>> for FpChip<'_, F, Fp>

Source§

fn select( &self, ctx: &mut Context<F>, a: ProperCrtUint<F>, b: ProperCrtUint<F>, sel: AssignedValue<F>, ) -> ProperCrtUint<F>

Source§

fn select_by_indicator( &self, ctx: &mut Context<F>, a: &impl AsRef<[ProperCrtUint<F>]>, coeffs: &[AssignedValue<F>], ) -> ProperCrtUint<F>