You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
__Figure__ ?? In the GENERIC-SEARCH algorithm, we keep track of the best _solution_ found so far, as well as a set of states that we have already _reached_, and a _frontier_ of paths from which we will choose
22
+
__function__ EXPAND(_problem, parent_) __returns__ a list of nodes
__Figure__ ?? In the GRAPH-SEARCH algorithm, we keep track of the best _solution_ found so far, as well as the states that we have already _reached_, and a _frontier_ of paths from which we will choose
23
33
the next path to expand.
24
34
In any specific search algorithm, we specify (1) the criteria for ordering the paths in the frontier,
25
35
and (2) the procedure for determining when it is no longer possible to improve on a solution.
0 commit comments