pub fn msm_interpolate<'a, P, I>( weights: &BTreeMap<u32, Weight>, evals: I, ) -> Result<P, Error>where P: Point + 'a, I: IntoIterator<Item = &'a Eval<P>>,
Interpolate the value of some Point with precomputed Barycentric Weights and multi-scalar multiplication (MSM).