(msg: &[F], param: &Self::LinCodePCParams)
| 56 | } |
| 57 | |
| 58 | fn encode(msg: &[F], param: &Self::LinCodePCParams) -> Result<Vec<F>, Error> { |
| 59 | Ok(reed_solomon(msg, param.rho_inv)) |
| 60 | } |
| 61 | |
| 62 | fn poly_to_vec(polynomial: &P) -> Vec<F> { |
| 63 | polynomial.to_evaluations() |
nothing calls this directly
no test coverage detected