Skip to content

Commit

Permalink
fix comment width
Browse files Browse the repository at this point in the history
  • Loading branch information
plafer committed Mar 7, 2024
1 parent 9193897 commit 8544e17
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions prover/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -387,8 +387,10 @@ pub trait Prover {
let z = channel.get_ood_point();

// evaluate trace and constraint polynomials at the OOD point z, and send the results to
// the verifier. the trace polynomials are actually evaluated over two points: z and
// z * g, where g is the generator of the trace domain. Additionally, if the Lagrange kernel auxiliary column is present, we also evaluate that column over the points: z, z * g, z * g^2, z * g^4, ..., z * g^(2^(v-1)), where v = log(trace_len).
// the verifier. the trace polynomials are actually evaluated over two points: z and z *
// g, where g is the generator of the trace domain. Additionally, if the Lagrange kernel
// auxiliary column is present, we also evaluate that column over the points: z, z * g,
// z * g^2, z * g^4, ..., z * g^(2^(v-1)), where v = log(trace_len).
let ood_trace_states = trace_polys.get_ood_frame(z);
channel.send_ood_trace_states(&ood_trace_states);

Expand Down

0 comments on commit 8544e17

Please sign in to comment.