Skip to content

Commit 2401399

Browse files
author
Bart van der Vecht
committed
Remove debug statements
1 parent f579a0b commit 2401399

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

squidasm/sim/stack/netstack.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -227,26 +227,21 @@ def put_create_ck_request(
227227
ResCreateAndKeep.__name__, receiver=self
228228
)
229229
self._logger.info(f"got result for pair {pair_index}: {result}")
230-
self._logger.warning(f"got result for pair {pair_index}: {result}")
231230

232231
if result.bell_state == BellIndex.B00:
233-
self._logger.warning("B00")
234232
pass
235233
elif result.bell_state == BellIndex.B01:
236234
prog = QuantumProgram()
237235
prog.apply(INSTR_ROT_X, qubit_indices=[0], angle=PI)
238-
self._logger.warning("B01")
239236
yield self.qdevice.execute_program(prog)
240237
elif result.bell_state == BellIndex.B10:
241238
prog = QuantumProgram()
242239
prog.apply(INSTR_ROT_Z, qubit_indices=[0], angle=PI)
243-
self._logger.warning("B10")
244240
yield self.qdevice.execute_program(prog)
245241
elif result.bell_state == BellIndex.B11:
246242
prog = QuantumProgram()
247243
prog.apply(INSTR_ROT_X, qubit_indices=[0], angle=PI)
248244
prog.apply(INSTR_ROT_Z, qubit_indices=[0], angle=PI)
249-
self._logger.warning("B11")
250245
yield self.qdevice.execute_program(prog)
251246

252247
virt_id = app_mem.get_array_value(req.qubit_array_addr, pair_index)

0 commit comments

Comments
 (0)