(&self)
| 194 | } |
| 195 | |
| 196 | fn not_a(&self) -> Result<Node> { |
| 197 | let graph = self.a_equal_b.get_graph(); |
| 198 | graph.custom_op(CustomOperation::new(Not {}), vec![self.a.clone()]) |
| 199 | } |
| 200 | |
| 201 | fn equal(&self) -> Result<Node> { |
| 202 | Ok(self.a_equal_b.clone()) |