Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 424d0f2 commit 029edb5Copy full SHA for 029edb5
search.py
@@ -190,7 +190,7 @@ def best_first_graph_search(problem, f):
190
"""Search the nodes with the lowest f scores first.
191
You specify the function f(node) that you want to minimize; for example,
192
if f is a heuristic estimate to the goal, then we have greedy best
193
- first search; if f is node.depth then we have depth-first search.
+ first search; if f is node.depth then we have breadth-first search.
194
There is a subtlety: the line "f = memoize(f, 'f')" means that the f
195
values will be cached on the nodes as they are computed. So after doing
196
a best first search you can examine the f values of the path returned."""
0 commit comments