コード例 #1
0
 def __init__(self, state, parent):
     SearchNode.__init__(self, state)
     self.parent = parent
コード例 #2
0
ファイル: swLab03.py プロジェクト: Edward-Wei/mit-courses
 def __init__(self, state, parent, cost):
     SearchNode.__init__(self, state)
     self.parent = parent
     self.cost = cost
コード例 #3
0
 def __init__(self, state, parent, cost):
     SearchNode.__init__(self, state)
     self.parent = parent
     self.cost = cost