We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f2a1be commit d4e2f9aCopy full SHA for d4e2f9a
crates/circuit/src/dag_circuit.rs
@@ -5688,13 +5688,8 @@ impl DAGCircuit {
5688
} else if let Ok(clbit) = wire.extract::<ShareableClbit>() {
5689
NodeType::ClbitOut(self.clbits.find(&clbit).unwrap())
5690
} else {
5691
-<<<<<<< HEAD
5692
- let var = VarAsKey::new(wire);
5693
- NodeType::VarIn(self.vars.find(&var).unwrap())
5694
-=======
5695
let var = PyObjectAsKey::new(wire);
5696
NodeType::VarOut(self.vars.find(&var).unwrap())
5697
->>>>>>> ddd04013f (Fix deepcopy/pickle of `DAGCircuit` variable IO nodes (#14041))
5698
}
5699
} else if let Ok(op_node) = b.downcast::<DAGOpNode>() {
5700
let op_node = op_node.borrow();
0 commit comments