Skip to content

Commit

Permalink
fix fri targe set
Browse files Browse the repository at this point in the history
  • Loading branch information
bytetang committed Aug 9, 2024
1 parent 5e37f69 commit ea43897
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion starky/src/recursive_verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,9 @@ pub fn add_virtual_stark_proof<F: RichField + Extendable<D>, S: Stark<F, D>, con
let cap_height = fri_params.config.cap_height;

let num_leaves_per_oracle = once(S::COLUMNS)
.chain(once(S::P2_COLUMNS))
.chain(
stark.use_phase2().then(||S::P2_COLUMNS),
)
.chain(
(stark.uses_lookups() || stark.requires_ctls())
.then(|| stark.num_lookup_helper_columns(config) + num_ctl_helper_zs),
Expand Down

0 comments on commit ea43897

Please sign in to comment.