예제 #1
0
파일: bigraph.py 프로젝트: ablab/rectangles
 def __init__(self, graph, d, test_utils):
   Abstract_Graph.__init__(self)
   self.logger = logging.getLogger('rectangles')
   self.graph = graph
   self.d = d   
   self.diagonals = set()
   self.test_utils = test_utils
예제 #2
0
파일: bigraph.py 프로젝트: zjwang6/TS
 def __init__(self, graph, d, test_utils):
     Abstract_Graph.__init__(self)
     self.logger = logging.getLogger('rectangles')
     self.graph = graph
     self.d = d
     self.diagonals = set()
     self.test_utils = test_utils
예제 #3
0
파일: graph.py 프로젝트: zjwang6/TS
 def __init__(self):
     Abstract_Graph.__init__(self)
     self.max_eid = 0
     self.etalon_dist = dict()
     self.logger = logging.getLogger('rectangles')
예제 #4
0
파일: graph.py 프로젝트: ablab/rectangles
 def __init__(self):
   Abstract_Graph.__init__(self)
   self.max_eid = 0
   self.etalon_dist = dict()
   self.logger = logging.getLogger('rectangles')