Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Schaeff committed Sep 16, 2024
1 parent 253e793 commit 84f3d7f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions uni-stark/src/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,6 @@ where
let degree = stage_0_trace.height();
let log_degree = log2_strict_usize(degree);

let log_quotient_degree =
get_log_quotient_degree::<Val<SC>, A>(air, &[stage_0_public_values.len()]);
let quotient_degree = 1 << log_quotient_degree;

let stage_count = <A as MultiStageAir<SymbolicAirBuilder<_>>>::stage_count(air);

let pcs = config.pcs();
Expand Down Expand Up @@ -173,6 +169,7 @@ where
.map(|s| s.public_values.len())
.collect::<Vec<_>>(),
);
let quotient_degree = 1 << log_quotient_degree;

let challenger = &mut state.challenger;

Expand Down

0 comments on commit 84f3d7f

Please sign in to comment.