Package edu.columbia.cs.coms4701.search.informed.searchstrategies

Interface Summary
AStarSearch<K extends AgentAction,S extends AgentState> A type of best-first search strategy which attempts to expand the node with the lowest estimated total cost from the root, through the node, to a goal state.
BestFirstSearch<K extends AgentAction,S extends AgentState> A search strategy which selects the node for expansion based on an evaluation function f(n).
GreedyBestFirstSearch<K extends AgentAction,S extends AgentState> A type of best-first search strategy which tries to expand the node that is closest to the goal.