pub struct PolynomialEvaluationDataNode { /* private fields */ }
Expand description
This is the data contained in each node in the tree. It contains
the information needed to calculate values for the
polynomium_products
hash map. The keys in this hash map are
abs_exponents
and the values are
polynomium_products[parent] * prod_{i=0}^N(point[i]^diff_exponents[i])
.
Trait Implementations
sourceimpl Clone for PolynomialEvaluationDataNode
impl Clone for PolynomialEvaluationDataNode
sourcefn clone(&self) -> PolynomialEvaluationDataNode
fn clone(&self) -> PolynomialEvaluationDataNode
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations
impl RefUnwindSafe for PolynomialEvaluationDataNode
impl Send for PolynomialEvaluationDataNode
impl Sync for PolynomialEvaluationDataNode
impl Unpin for PolynomialEvaluationDataNode
impl UnwindSafe for PolynomialEvaluationDataNode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more