Evaluate the polynomial in `self`.
(&self, point: &P::Point)
| 155 | |
| 156 | /// Evaluate the polynomial in `self`. |
| 157 | pub fn evaluate(&self, point: &P::Point) -> F { |
| 158 | self.polynomial.evaluate(point) |
| 159 | } |
| 160 | |
| 161 | /// Retrieve the degree of the polynomial in `self`. |
| 162 | pub fn degree(&self) -> usize { |
no outgoing calls