Skip to content

Commit

Permalink
Initialize unique points array
Browse files Browse the repository at this point in the history
  • Loading branch information
akokoshn authored and akokoshn committed May 13, 2024
1 parent 1e6489d commit a614c98
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ typedef __attribute__((ext_vector_type(2)))
// Commitment scheme
std::array<pallas::base_field_type::value_type, singles_amount> singles = fill_singles(challenges.xi, challenges.eta);
std::array<pallas::base_field_type::value_type, unique_points+1> U;
std::array<pallas::base_field_type::value_type, unique_points+1> U{pallas::base_field_type::value_type(0)};
$PREPARE_U_AND_V$
Expand Down Expand Up @@ -539,4 +539,4 @@ typedef __attribute__((ext_vector_type(2)))
}
}

#endif //__RECURSIVE_VERIFIER_TEMPLATE_HPP__
#endif //__RECURSIVE_VERIFIER_TEMPLATE_HPP__

0 comments on commit a614c98

Please sign in to comment.