Sfoglia il codice sorgente

Fix VisibleDeprecationWarning in `graphstate.py`

master
Pete Shadbolt 8 anni fa
parent
commit
6e500dc7b5
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      abp/graphstate.py

+ 1
- 1
abp/graphstate.py Vedi File

@@ -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:


Loading…
Annulla
Salva