Uses of Class
edu.uky.ai.planning.Planner
Packages that use Planner
Package
Description
Contains objects for representing planning problems, planning algorithms, and plans.
Contains objects for representing plan graphs and planners that search for a
solution by finding a valid subgraph of a plan graph.
Contains objects for representing plan space search and plan space planners.
Contains objects for representing forward and backward state space
search and state space planners.
-
Uses of Planner in edu.uky.ai.planning
Fields in edu.uky.ai.planning declared as PlannerModifier and TypeFieldDescriptionfinal Planner<?>Result.plannerThe planner that performed the searchMethods in edu.uky.ai.planning with parameters of type PlannerModifier and TypeMethodDescriptionstatic voidMain.benchmark(Planner<?>[] planners, Problem[] problems, int maxNodes, long maxTime, Writer output) Compares the performance of one or more planners on one or more problems.static voidUses a given planner to solve a given problem.Constructors in edu.uky.ai.planning with parameters of type Planner -
Uses of Planner in edu.uky.ai.planning.pg
Subclasses of Planner in edu.uky.ai.planning.pgModifier and TypeClassDescriptionclassA planner which searches aPlanGraphfor a subgraph that represents a solution to a planning problem. -
Uses of Planner in edu.uky.ai.planning.ps
Subclasses of Planner in edu.uky.ai.planning.psModifier and TypeClassDescriptionclassA subclass ofPlannerwhich uses plan-space search for find solutions. -
Uses of Planner in edu.uky.ai.planning.ss
Subclasses of Planner in edu.uky.ai.planning.ssModifier and TypeClassDescriptionclassA planner which searches backward through space of states for the solution to a given problem.classA planner which searches forward through space of states for the solution to a given problem.classStateSpacePlanner<S extends StateSpaceSearch>A planner which searches the space of states for the solution to a given problem.