コード例 #1
0
ファイル: bigraph.py プロジェクト: ablab/rectangles
 def __init__(self, key):
   Abstract_Vertex.__init__(self, BVertex.vid)
   self.key = key
   BVertex.vid += 1
コード例 #2
0
ファイル: bigraph.py プロジェクト: zjwang6/TS
 def __init__(self, key):
     Abstract_Vertex.__init__(self, BVertex.vid)
     self.key = key
     BVertex.vid += 1
コード例 #3
0
ファイル: graph.py プロジェクト: zjwang6/TS
 def __init__(self, vid, conj):
     Abstract_Vertex.__init__(self, vid)
     conjugate(self, conj)
コード例 #4
0
ファイル: graph.py プロジェクト: ablab/rectangles
 def __init__(self, vid, conj):
   Abstract_Vertex.__init__(self, vid)
   conjugate(self, conj)