소스 검색

PEP compliance

master
Pete Shadbolt 7 년 전
부모
커밋
6250fbc0d0
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. +3
    -2
      abp/graphstate.py

+ 3
- 2
abp/graphstate.py 파일 보기

@@ -62,7 +62,7 @@ class GraphState(object):

def _add_node(self, node, **kwargs):
""" Add a node.
By default, nodes are initialized with ``vop=``:math:`I`, i.e. they are in the :math:`|+\\rangle` state.
"""
if node in self.node:
@@ -425,7 +425,8 @@ class GraphState(object):
""" Represent as a string for quick debugging """
s = ""
for key in sorted(self.node.keys()):
s += "{}: {}\t".format(key, clifford.get_name(self.node[key]["vop"]))
s += "{}: {}\t".format(key,
clifford.get_name(self.node[key]["vop"]))
if self.adj[key]:
s += str(tuple(self.adj[key].keys())).replace(" ", "")
else:


불러오는 중...
취소
저장