Package edu.uky.ai.planning.ps
Class PlanSpaceRoot
java.lang.Object
edu.uky.ai.planning.ps.PlanSpaceNode
edu.uky.ai.planning.ps.PlanSpaceRoot
- All Implemented Interfaces:
Partial
A special subclass of
PlanSpaceNode representing the root node of
the search space.- Author:
- Stephen G. Ware
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal SearchBudgetThe search budgetfinal ProblemThe problem this search is trying to solveFields inherited from class edu.uky.ai.planning.ps.PlanSpaceNode
bindings, causalLinks, flaws, orderings, parent, steps -
Constructor Summary
ConstructorsConstructorDescriptionPlanSpaceRoot(Problem problem, SearchBudget budget) Constructs a new root node of a search space for a given problem. -
Method Summary
Methods inherited from class edu.uky.ai.planning.ps.PlanSpaceNode
expand, getRoot, toString, toString
-
Field Details
-
problem
The problem this search is trying to solve -
budget
The search budget
-
-
Constructor Details
-
PlanSpaceRoot
Constructs a new root node of a search space for a given problem.- Parameters:
problem- the problem to solvebudget- budget the search budget, which limits how many nodes may be visited and how much time may be spent solving the problem
-