Skip to content
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

fix verify annotation #95

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/ahp/verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ impl<F: PrimeField> AHPForR1CS<F> {
//
// Note that z is the interpolation of x || w, so it equals x + v_X * w
// We also use an optimization: instead of explicitly calculating z_c, we
// use the "virtual oracle" z_b * z_c
// use the "virtual oracle" z_a * z_b
//
// LinearCombination::new(
// outer_sumcheck
Expand Down Expand Up @@ -176,7 +176,7 @@ impl<F: PrimeField> AHPForR1CS<F> {
//
// let a_poly_lc *= v_H_at_alpha * v_H_at_beta;
// let b_lc = denom
// let h_lc = LinearCombination::new("b_poly", vec![(v_K_at_gamma, "h_2")]);
// let h_lc = LinearCombination::new("h_2", vec![(v_K_at_gamma, "h_2")]);
//
// // This LC is the only one that is evaluated:
// let inner_sumcheck = a_poly_lc - (b_lc * (gamma * &g_2_at_gamma + &(t_at_beta / &k_size))) - h_lc
Expand Down