Update specs/_features/eip7594/polynomial-commitments-sampling.md
Co-authored-by: Hsiao-Wei Wang <hsiaowei.eth@gmail.com>
This commit is contained in:
parent
1e41a6bc69
commit
4b1106b39c
|
@ -616,9 +616,12 @@ def recover_polynomial(cell_ids: Sequence[CellID],
|
|||
eval_shifted_extended_evaluation, eval_shifted_zero_poly, shift_inv = \
|
||||
recover_shifted_data(cell_ids, cells, zero_poly_eval, zero_poly_coeff, roots_of_unity_extended)
|
||||
|
||||
reconstructed_data = \
|
||||
recover_original_data(eval_shifted_extended_evaluation, eval_shifted_zero_poly, shift_inv,
|
||||
roots_of_unity_extended)
|
||||
reconstructed_data = recover_original_data(
|
||||
eval_shifted_extended_evaluation,
|
||||
eval_shifted_zero_poly,
|
||||
shift_inv,
|
||||
roots_of_unity_extended,
|
||||
)
|
||||
|
||||
for cell_id, cell in zip(cell_ids, cells):
|
||||
start = cell_id * FIELD_ELEMENTS_PER_CELL
|
||||
|
|
Loading…
Reference in New Issue