[][src]Struct bellperson::multiexp::DensityTracker

pub struct DensityTracker {
    pub bv: BitVec,
    pub total_density: usize,
}

Fields

bv: BitVectotal_density: usize

Implementations

impl DensityTracker[src]

pub fn new() -> DensityTracker[src]

pub fn add_element(&mut self)[src]

pub fn inc(&mut self, idx: usize)[src]

pub fn get_total_density(&self) -> usize[src]

pub fn extend(&mut self, other: Self, is_input_density: bool)[src]

Extend by concatenating other. If is_input_density is true, then we are tracking an input density, and other may contain a redundant input for the One element. Coalesce those as needed and track the result.

Trait Implementations

impl Clone for DensityTracker[src]

impl Debug for DensityTracker[src]

impl Eq for DensityTracker[src]

impl PartialEq<DensityTracker> for DensityTracker[src]

impl<'a> QueryDensity for &'a DensityTracker[src]

type Iter = Iter<'a>

Returns whether the base exists.

impl StructuralEq for DensityTracker[src]

impl StructuralPartialEq for DensityTracker[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,