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§
source§impl Clone for PolynomialEvaluationDataNode
impl Clone for PolynomialEvaluationDataNode
source§fn clone(&self) -> PolynomialEvaluationDataNode
fn clone(&self) -> PolynomialEvaluationDataNode
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 more