예제 #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)