Skip to content

Commit

Permalink
enable merge recursive verifier in goblin recursive verifier
Browse files Browse the repository at this point in the history
  • Loading branch information
maramihali committed Jun 25, 2024
1 parent bb38246 commit 6be383e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ TEST_F(ClientIVCRecursionTests, Basic)
// Generate the recursive verification circuit
verifier.verify(proof);

info("Recursive Verifier: num gates = ", builder->num_gates);

EXPECT_EQ(builder->failed(), false) << builder->err();

EXPECT_TRUE(CircuitChecker::check(*builder));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ void GoblinRecursiveVerifier::verify(const GoblinProof& proof)
};
translator_verifier.verify_translation(translation_evaluations);

// TODO(https://github.com/AztecProtocol/barretenberg/issues/1024): Perform recursive merge verification once it
// works with Ultra arithmetization
// MergeVerifier merge_verified{ builder };
// [[maybe_unused]] auto merge_pairing_points = merge_verifier.verify_proof(proof.merge_proof);
MergeVerifier merge_verifier{ builder };
merge_verifier.verify_proof(proof.merge_proof);
}
} // namespace bb::stdlib::recursion::honk

0 comments on commit 6be383e

Please sign in to comment.