Skip to content

Commit

Permalink
Reduce degree
Browse files Browse the repository at this point in the history
  • Loading branch information
darth-cy committed Sep 23, 2024
1 parent dd6025f commit 5523a3f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions compression/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ fn test_standard_plonk_compression() {
let snarks = [(); 1].map(|_| gen_application_snark(&params_app));

let layer1_agg_params = AggregationConfigParams {
degree: 24,
degree: 21,
num_advice: 15,
num_lookup_advice: 2,
num_fixed: 1,
Expand Down Expand Up @@ -201,7 +201,7 @@ fn test_mock_compression() {
let params = gen_srs(k1);

let layer1_agg_params = AggregationConfigParams {
degree: 24,
degree: 21,
num_advice: 15,
num_lookup_advice: 2,
num_fixed: 1,
Expand Down Expand Up @@ -233,7 +233,7 @@ fn test_two_layer_compression() {
// First layer of compression
let k1 = 24u32;
let layer1_agg_params = AggregationConfigParams {
degree: 24,
degree: 21,
num_advice: 15,
num_lookup_advice: 2,
num_fixed: 1,
Expand All @@ -254,7 +254,7 @@ fn test_two_layer_compression() {
// Second layer of compression
let k2 = 25;
let layer2_agg_params = AggregationConfigParams {
degree: 25,
degree: 21,
num_advice: 1,
num_lookup_advice: 1,
num_fixed: 1,
Expand Down Expand Up @@ -322,7 +322,7 @@ fn test_read_snark_compression() {
// First layer of compression
let k1 = 24u32;
let layer1_agg_params = AggregationConfigParams {
degree: 24,
degree: 21,
num_advice: 15,
num_lookup_advice: 2,
num_fixed: 1,
Expand Down

0 comments on commit 5523a3f

Please sign in to comment.