Exercise 1.2
Let be the evaluation function of A*.
Choose all the functions and constants so that:
-
A* acts as BFS
Choosing function with the lowest depth in the tree first is the equivalent of BFS.
-
A* acts as DFS
Choosing function with the highest depth in the tree first is the equivalent of DFS.
-
A* acts as UCS
Not using any heuristcs at all.