示例#1
0
 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')