From c108dc6d81b85339c9ece13436225f99c471a6d4 Mon Sep 17 00:00:00 2001 From: Daniel Lubarov Date: Sat, 22 May 2021 09:46:02 -0700 Subject: [PATCH] Default degree 2^14 --- src/bin/bench_ldes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/bench_ldes.rs b/src/bin/bench_ldes.rs index 0413b296..1fb02d65 100644 --- a/src/bin/bench_ldes.rs +++ b/src/bin/bench_ldes.rs @@ -12,7 +12,7 @@ type F = CrandallField; // from wire polynomials which "store" the outputs of S-boxes in our Poseidon gate. const NUM_LDES: usize = 8 + 8 + 3 + 86 + 3 + 8; -const DEGREE: usize = 1 << 13; +const DEGREE: usize = 1 << 14; const RATE_BITS: usize = 3;