def __init__(self, state, parent):
     SearchNode.__init__(self, state)
     self.parent = parent
Beispiel #2
0
 def __init__(self, state, parent, cost):
     SearchNode.__init__(self, state)
     self.parent = parent
     self.cost = cost
Beispiel #3
0
 def __init__(self, state, parent, cost):
     SearchNode.__init__(self, state)
     self.parent = parent
     self.cost = cost