Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicole authored and Nicole committed Dec 5, 2024
1 parent 09a0615 commit 04ac811
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion provers/stark/src/examples/read_only_memory_logup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,15 @@ where
let first_step = frame.get_evaluation_step(0);
let second_step = frame.get_evaluation_step(1);

// Auxiliary constraints
// Auxiliary frame elements
let s0 = first_step.get_aux_evaluation_element(0, 0);
let s1 = second_step.get_aux_evaluation_element(0, 0);

// Challenges
let z = &rap_challenges[0];
let alpha = &rap_challenges[1];

// Main frame elements
let a1 = second_step.get_main_evaluation_element(0, 0);
let v1 = second_step.get_main_evaluation_element(0, 1);
let a_sorted_1 = second_step.get_main_evaluation_element(0, 2);
Expand Down

0 comments on commit 04ac811

Please sign in to comment.