From 0155c422ab890677aafa80639ef533e923cd3317 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Thu, 19 Aug 2021 22:34:09 -0700 Subject: [PATCH] fmt --- src/gates/switch.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gates/switch.rs b/src/gates/switch.rs index f06ae7a9..13bb2883 100644 --- a/src/gates/switch.rs +++ b/src/gates/switch.rs @@ -86,8 +86,7 @@ impl, const D: usize, const CHUNK_SIZE: usize> Gate constraints.push(switch_bool * (first_input - second_output)); constraints.push(switch_bool * (second_input - first_output)); constraints.push(not_switch * (first_input - first_output)); - constraints - .push(not_switch * (second_input - second_output)); + constraints.push(not_switch * (second_input - second_output)); } }