Skip to content

Commit

Permalink
adjust some comments per PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
ledwards2225 committed Apr 13, 2023
1 parent dff21ab commit 4c9f2b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ void verify_consistency(honk::UltraProver& honk_prover, plonk::UltraProver& plon
}

// Check that all wires agree
// Note: for Honk, wires are owned directly by the prover. For Plonk they are stored in the key.
for (size_t i = 0; i < 4; ++i) {
std::string label = "w_" + std::to_string(i + 1) + "_lagrange";
ASSERT_EQ(honk_prover.wire_polynomials[i], plonk_prover.key->polynomial_store.get(label));
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/barretenberg/honk/flavor/flavor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ struct StandardArithmetization {
* This separation must be maintained to allow for programmatic access, but the ordering of the
* polynomials can be permuted within each category if necessary. Polynomials can also be added
* or removed (assuming consistency with the prover algorithm) but the constants describing the
* number of poynomials in each category must be manually updated.
* number of polynomials in each category must be manually updated.
*
*/
enum POLYNOMIAL {
Expand Down Expand Up @@ -195,7 +195,7 @@ struct UltraArithmetization {
* This separation must be maintained to allow for programmatic access, but the ordering of the
* polynomials can be permuted within each category if necessary. Polynomials can also be added
* or removed (assuming consistency with the prover algorithm) but the constants describing the
* number of poynomials in each category must be manually updated.
* number of polynomials in each category must be manually updated.
*
*/
enum POLYNOMIAL {
Expand Down

0 comments on commit 4c9f2b1

Please sign in to comment.