You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the to_sponge_field_elements<F: PrimeField>(&self, dest: &mut Vec<F>) function we cannot call to_native_sponge_field_elements(dest) directly, as to_native_sponge_field_elements needs F to be C::ScalarField, but here F is a generic PrimeField. This affects all the folding schemes that use a CryptographicSponge (Nova, OVA, Hypernova, and the upcoming Mova)
The text was updated successfully, but these errors were encountered:
In the
to_sponge_field_elements<F: PrimeField>(&self, dest: &mut Vec<F>)
function we cannot callto_native_sponge_field_elements(dest)
directly, asto_native_sponge_field_elements
needsF
to beC::ScalarField
, but hereF
is a genericPrimeField
. This affects all the folding schemes that use aCryptographicSponge
(Nova, OVA, Hypernova, and the upcoming Mova)The text was updated successfully, but these errors were encountered: