Fix comment

This commit is contained in:
wborgeaud 2022-01-17 06:44:05 +01:00
parent 6f65620ff2
commit 2bb0c4f4e7

View File

@ -156,7 +156,7 @@ impl<F: RichField + Extendable<D>, C: GenericConfig<D, F = F>, const D: usize>
} }
final_poly.trim(); final_poly.trim();
// Multiply the final polynomial by `X`, so that `final_poly` has the maximum degree for // Multiply the final polynomial by `X`, so that `final_poly` has the maximum degree for
// which the LDT will pass. See github.com/mir-protocol/plonky2/pull/434 for details. // which the LDT will pass. See github.com/mir-protocol/plonky2/pull/436 for details.
final_poly.coeffs.insert(0, F::Extension::ZERO); final_poly.coeffs.insert(0, F::Extension::ZERO);
let lde_final_poly = final_poly.lde(fri_params.config.rate_bits); let lde_final_poly = final_poly.lde(fri_params.config.rate_bits);