Explorar el Código

Fix VisibleDeprecationWarning in `graphstate.py`

master
Pete Shadbolt hace 8 años
padre
commit
6e500dc7b5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      abp/graphstate.py

+ 1
- 1
abp/graphstate.py Ver fichero

@@ -99,7 +99,7 @@ class GraphState():
self.remove_vop(b, a)
if self.ngbh[a] - {b}:
self.remove_vop(a, b)
edge = self.has_edge(a, b)
edge = int(self.has_edge(a, b))
new_edge, self.vops[a], self.vops[
b] = clifford.cz_table[edge, self.vops[a], self.vops[b]]
if new_edge != edge:


Cargando…
Cancelar
Guardar