|
|
|
|
|
by awesome_dude
362 days ago
|
|
Which algorithm should I apply: I have no information other than the fact that my agent has a decision to make (left or right). - DFS or BFS I have some information about the cost of the decision. - UCS or Djikstra's algorithm I have some idea of the cost of the decision, and a rough idea which direction the goal is in. - A star As well as knowing the cost, and a rough idea of the direction, I also know that I have a uniform cost grid. - Jump point search |
|