Skip to content

Commit

Permalink
Fixed a bug in biggroup tests (AztecProtocol/barretenberg#478)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rumata888 authored May 25, 2023
1 parent ca002d5 commit e558287
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ template <class Composer, class Fq, class Fr, class NativeGroup> class element {
{
num_points = points.size();
num_fives = num_points / 5;

num_sixes = 0;
// size-6 table is expensive and only benefits us if creating them reduces the number of total tables
if (num_fives * 5 == (num_points - 1)) {
num_fives -= 1;
Expand Down

0 comments on commit e558287

Please sign in to comment.