fn eval_polynomial<F: PrimeField>(elm: &[F], evals: &[F]) -> DensePolynomial<F>Expand description
The polynomial that evaluates to each of evals for the respective elms.
For now, only works for 2 evaluations points.
elm is the vector of evaluation points and evals is the vector of
evaluations at those points.