Add new_poly_l to interface

This commit is contained in:
Ramana Kumar 2022-09-16 09:09:14 +01:00
parent f7aa56679b
commit 509e75b1d5
No known key found for this signature in database
GPG Key ID: ED471C788B900433
1 changed files with 1 additions and 0 deletions

View File

@ -98,6 +98,7 @@ C_KZG_RET poly_mul(poly *out, const poly *a, const poly *b);
C_KZG_RET poly_mul_(poly *out, const poly *a, const poly *b, FFTSettings *fs);
C_KZG_RET new_poly_div(poly *out, const poly *dividend, const poly *divisor);
C_KZG_RET new_poly(poly *out, uint64_t length);
C_KZG_RET new_poly_l(poly_l *out, uint64_t length);
C_KZG_RET new_poly_with_coeffs(poly *out, const fr_t *coeffs, uint64_t length);
void free_poly(poly *p);
void free_poly_l(poly_l *p);