瀏覽代碼

Add fancy.GraphState.from_nx, which is a hack

To play around with lattices
master
Pete Shadbolt 7 年之前
父節點
當前提交
dfa0e0c6b8
共有 1 個文件被更改,包括 10 次插入0 次删除
  1. +10
    -0
      abp/fancy.py

+ 10
- 0
abp/fancy.py 查看文件

@@ -21,6 +21,15 @@ class GraphState(graphstate.GraphState, networkx.Graph):
except: #TODO: bad practice
self.ws = None

def from_nx(self, g):
""" Clone from a networkx graph. Hacky af """
self.adj = g.adj.copy()
self.node = g.node.copy()
# TODO: hacky af
for key, value in self.node.items():
self.node[key]["vop"] = clifford.by_name["identity"]


def shutdown(self):
""" Close the connection to the websocket """
if not self.ws:
@@ -34,6 +43,7 @@ class GraphState(graphstate.GraphState, networkx.Graph):
return

# Automatically perform layout if position is not provided
print self.node.values()
if not all(("position" in node) for node in self.node.values()):
self.layout()



Loading…
取消
儲存