Exemplo n.º 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
Exemplo n.º 2
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
Exemplo n.º 3
0
Arquivo: graph.py Projeto: zjwang6/TS
 def __init__(self):
     Abstract_Graph.__init__(self)
     self.max_eid = 0
     self.etalon_dist = dict()
     self.logger = logging.getLogger('rectangles')
Exemplo n.º 4
0
 def __init__(self):
   Abstract_Graph.__init__(self)
   self.max_eid = 0
   self.etalon_dist = dict()
   self.logger = logging.getLogger('rectangles')