Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sai-deng committed Nov 15, 2024
1 parent 8572c81 commit 93ba39c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions starky/src/fibonacci_stark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,10 @@ mod tests {
stark_config.fri_config.num_query_rounds = 1;

let min_degree_bits_to_support = 4;
// Currently, we only support verifier_degree_bits to be {30, 26, 22, 18, …}, as they
// generate the max final polynomial length when using the default configuration
// ConstantArityBits(4, 5). This ensures that for other degrees, the final proof polynomial
// will not be longer than the circuit’s final polynomial length.
let verifier_degree_bits = 30;
let degree_bits = 4..=15;
let verifier_fri_params = stark_config.fri_params(verifier_degree_bits);
Expand Down

0 comments on commit 93ba39c

Please sign in to comment.