diff --git a/kimchi/src/circuits/polynomials/keccak/witness.rs b/kimchi/src/circuits/polynomials/keccak/witness.rs index 5161c4a708..a22713039f 100644 --- a/kimchi/src/circuits/polynomials/keccak/witness.rs +++ b/kimchi/src/circuits/polynomials/keccak/witness.rs @@ -19,9 +19,9 @@ use super::{ RATE, }; -type Layout = Vec>>>; +type Layout = Vec, COLUMNS>>>; -fn layout_round() -> [Layout; 1] { +fn layout_round() -> [Layout; 1] { [vec![ IndexCell::create("state_a", 0, 100), IndexCell::create("state_c", 100, 120), @@ -48,7 +48,7 @@ fn layout_round() -> [Layout; 1] { ]] } -fn layout_sponge() -> [Layout; 1] { +fn layout_sponge() -> [Layout; 1] { [vec![ IndexCell::create("old_state", 0, 100), IndexCell::create("new_state", 100, 200),