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

Uninformed search strategy specifications.

See:
          Description

Interface Summary
BreadthFirstSearch<K extends AgentAction,S extends AgentState> Search strategy in which the root node is expanded first, then all successors of the root node are expanded next, then their successors, etc.
DepthFirstSearch<K extends AgentAction,S extends AgentState> Search strategy that always expands the deepest node in the current fringe of the search tree.
UniformCostSearch<K extends AgentAction,S extends AgentState> Like BreadthFirstSearch, but expands the node with lowest path cost, rather than the shallowest node.
 

Package edu.columbia.cs.coms4701.search.uninformed.searchstrategies Description

Uninformed search strategy specifications.

Package Specification

Related Documentation

For overviews, tutorials, examples, guides, and tool documentation, please see: