From 6f885db67771ee19c44a04d55921441fc0e90dbf Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Sat, 4 Sep 2021 16:44:49 -0700 Subject: [PATCH] fixes --- src/gadgets/permutation.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gadgets/permutation.rs b/src/gadgets/permutation.rs index 85db5419..945f58fa 100644 --- a/src/gadgets/permutation.rs +++ b/src/gadgets/permutation.rs @@ -396,6 +396,8 @@ mod tests { fn test_permutation_good(size: usize) -> Result<()> { type F = CrandallField; + const D: usize = 4; + let config = CircuitConfig::large_zk_config(); let pw = PartialWitness::new(); @@ -419,6 +421,8 @@ mod tests { fn test_permutation_bad(size: usize) -> Result<()> { type F = CrandallField; + const D: usize = 4; + let config = CircuitConfig::large_zk_config(); let pw = PartialWitness::new();