Skip to content

Commit 46d6e66

Browse files
committed
Remove redundant comments
1 parent 3c912a1 commit 46d6e66

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

relations/src/gr1cs/constraint_system.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -811,13 +811,9 @@ impl<F: Field> ConstraintSystem<F> {
811811
if var.is_zero() {
812812
LinearCombination::zero()
813813
} else if var.is_lc() {
814-
// If the variable is a symbolic linear combination, we return the
815-
// linear combination corresponding to that index.
816814
let lc_index = var.index().unwrap();
817815
LinearCombination(self.lc_map[lc_index].to_vec())
818816
} else {
819-
// If the variable is not a linear combination, we convert it to a
820-
// linear combination.
821817
LinearCombination::from(var)
822818
}
823819
}

0 commit comments

Comments
 (0)