Package edu.uky.ai.planning.ss
Class ForwardPlanner
A planner which searches forward through space of states for the solution to
a given problem.
- Author:
- Stephen G. Ware
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionForwardPlanner(String name) Constructs a new forward state space planner with a given name. -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract ForwardSearchmakeForwardSearch(StateSpaceProblem problem, SearchBudget budget) Given some state space problem to be solved, this method constructs the appropriate kind ofForwardSearchto solve it based on this planner.protected ForwardSearchmakeSearch(Problem problem, SearchBudget budget) Given some problem to be solved, and search budget in which to solve it, this method constructs the appropriate kind ofSearchto solve the problem based on this planner's technique.protected ForwardSearchmakeStateSpaceSearch(StateSpaceProblem problem, SearchBudget budget) Given some state space problem to be solved, this method constructs the appropriate kind ofStateSpaceSearchto solve it based on this planner.
-
Constructor Details
-
ForwardPlanner
Constructs a new forward state space planner with a given name.- Parameters:
name- the name of the planner
-
-
Method Details
-
makeSearch
Description copied from class:PlannerGiven some problem to be solved, and search budget in which to solve it, this method constructs the appropriate kind ofSearchto solve the problem based on this planner's technique.- Overrides:
makeSearchin classStateSpacePlanner<ForwardSearch>- Parameters:
problem- the problem to be solvedbudget- the search budget, which specifies the maximum number of nodes the planner may visit and maximum amount of time the search can take- Returns:
- a search object for solving this problem
-
makeStateSpaceSearch
Description copied from class:StateSpacePlannerGiven some state space problem to be solved, this method constructs the appropriate kind ofStateSpaceSearchto solve it based on this planner.- Specified by:
makeStateSpaceSearchin classStateSpacePlanner<ForwardSearch>- Parameters:
problem- the state space problem to be solvedbudget- the search budget in which to solve it- Returns:
- a state space search object for solving this problem
-
makeForwardSearch
Given some state space problem to be solved, this method constructs the appropriate kind ofForwardSearchto solve it based on this planner.- Parameters:
problem- the state space problem to be solvedbudget- the search budget in which to solve it- Returns:
- a forward state space search object for solving this problem
-