Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmasny committed Feb 20, 2024
1 parent 9d51abd commit b95d9f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ipa-core/src/protocol/ipa_prf/malicious_security/lagrange.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ mod test {

proptest! {
#[test]
fn test_lagrange_single_output_point_using_new(output_point: TestField, input_points in prop::array::uniform32(any::<TestField>())){
fn lagrange_single_output_point_using_new(output_point: TestField, input_points in prop::array::uniform32(any::<TestField>())){
let polynomial_monomial_form = MonomialFormPolynomial{
coefficients: GenericArray::<TestField,U32>::from_array(input_points)};
let output_expected = polynomial_monomial_form.eval(
Expand All @@ -222,7 +222,7 @@ mod test {
}

#[test]
fn test_lagrange_cannonical_using_from(input_points in prop::array::uniform8(any::<TestField>()))
fn lagrange_cannonical_using_from(input_points in prop::array::uniform8(any::<TestField>()))
{
let polynomial_monomial_form = MonomialFormPolynomial{
coefficients: GenericArray::<TestField,U8>::from_array(input_points)};
Expand Down

0 comments on commit b95d9f8

Please sign in to comment.