Default degree 2^14

This commit is contained in:
Daniel Lubarov 2021-05-22 09:46:02 -07:00
parent 83ef3d1da7
commit c108dc6d81

View File

@ -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;