Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
adr1anh committed Jan 24, 2023
1 parent f0f0054 commit b7212e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp/src/aztec/honk/sumcheck/sumcheck.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ TEST(Sumcheck, ProverAndVerifier)
std::array<FF, 2> w_l = { 1, 2 };
std::array<FF, 2> w_r = { 1, 2 };
std::array<FF, 2> w_o = { 2, 4 };
std::array<FF, 2> z_perm = { 1, 0 };
std::array<FF, 2> z_perm_shift = { 0, 1 }; // NOTE: Not set up to be valid.
std::array<FF, 2> z_perm = { 0, 1 };
std::array<FF, 2> z_perm_shift = { 1, 0 }; // NOTE: Not set up to be valid.
std::array<FF, 2> q_m = { 0, 1 };
std::array<FF, 2> q_l = { 1, 0 };
std::array<FF, 2> q_r = { 1, 0 };
Expand All @@ -139,7 +139,7 @@ TEST(Sumcheck, ProverAndVerifier)
std::array<FF, 2> id_2 = { 1, 2 }; // NOTE: Not set up to be valid.
std::array<FF, 2> id_3 = { 1, 2 }; // NOTE: Not set up to be valid.
std::array<FF, 2> lagrange_first = { 1, 0 };
std::array<FF, 2> lagrange_last = { 1, 2 }; // NOTE: Not set up to be valid.
std::array<FF, 2> lagrange_last = { 0, 1 }; // NOTE: Not set up to be valid.

// These will be owned outside the class, probably by the composer.
std::array<std::span<FF>, Multivariates::num> full_polynomials = {
Expand Down

0 comments on commit b7212e8

Please sign in to comment.