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)); } }