mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-28 07:21:07 +00:00
Update A*.py
This commit is contained in:
parent
9ba6426aad
commit
271cc48a2b
|
@ -13,7 +13,7 @@ heuristic = [[9, 8, 7, 6, 5, 4],
|
|||
[5, 4, 3, 2, 1, 0]]'''
|
||||
|
||||
init = [0, 0]
|
||||
goal = [len(grid)-1, len(grid[0])-1]
|
||||
goal = [len(grid)-1, len(grid[0])-1] #all coordinates are given in format [y,x]
|
||||
cost = 1
|
||||
|
||||
#the cost map which pushes the path closer to the goal
|
||||
|
|
Loading…
Reference in New Issue
Block a user