(&self, csts: LinearConstraintSystem)
| 611 | } |
| 612 | |
| 613 | pub fn join(&self, csts: LinearConstraintSystem) -> Self { |
| 614 | let mut result = Self::default(); |
| 615 | for cst in csts { |
| 616 | result.add(cst); |
| 617 | } |
| 618 | result |
| 619 | } |
| 620 | |
| 621 | pub fn size(&self) -> usize { |
| 622 | self.csts.len() |