-
Notifications
You must be signed in to change notification settings - Fork 598
feat: Mocking for translator and eccvm proofs #16368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f3ebebe
9bd186e
ae8d4b8
e945a1f
6c2876f
a2dedb2
4f36de3
c8a8abf
0b7894c
df1d579
a37ef47
a9a918e
0fcc94f
33b2552
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -255,15 +255,6 @@ class IvcRecursionConstraintTest : public ::testing::Test { | |||
| void SetUp() override { bb::srs::init_file_crs_factory(bb::srs::bb_crs_path()); } | ||||
| }; | ||||
|
|
||||
| /** | ||||
| * @brief Check that the size of a mock merge proof matches expectation | ||||
| */ | ||||
| TEST_F(IvcRecursionConstraintTest, MockMergeProofSize) | ||||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Duplicate test
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. where's the other occurrence?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, I should have pointed this out: aztec-packages/barretenberg/cpp/src/barretenberg/dsl/acir_format/mock_verifier_inputs.test.cpp Line 31 in 0b7894c
|
||||
| { | ||||
| Goblin::MergeProof merge_proof = create_mock_merge_proof(); | ||||
| EXPECT_EQ(merge_proof.size(), MERGE_PROOF_SIZE); | ||||
| } | ||||
|
|
||||
| /** | ||||
| * @brief Test IVC accumulation of a one app and one kernel; The kernel includes a recursive oink verification for the | ||||
| * app, specified via an ACIR RecursionConstraint. | ||||
|
|
||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for cleaning up the mess I created here :D