Uses of Class
edu.uky.ai.planning.Problem
Packages that use Problem
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 Problem in edu.uky.ai.planning
Fields in edu.uky.ai.planning declared as ProblemModifier and TypeFieldDescriptionfinal ProblemResult.problemThe problem being solvedfinal ProblemSearch.problemThe problem being solvedMethods in edu.uky.ai.planning with parameters of type ProblemModifier 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.protected abstract SPlanner.makeSearch(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.static voidUses a given planner to solve a given problem.final ResultReturns a solution to the given problem.final ResultPlanner.solve(Problem problem, SearchBudget budget) Returns a solution to the given problem.Constructors in edu.uky.ai.planning with parameters of type Problem -
Uses of Problem in edu.uky.ai.planning.pg
Methods in edu.uky.ai.planning.pg with parameters of type ProblemModifier and TypeMethodDescriptionprotected PlanGraphSearchPlanGraphPlanner.makeSearch(Problem problem, SearchBudget budget) Constructors in edu.uky.ai.planning.pg with parameters of type Problem -
Uses of Problem in edu.uky.ai.planning.ps
Fields in edu.uky.ai.planning.ps declared as ProblemModifier and TypeFieldDescriptionfinal ProblemPlanSpaceRoot.problemThe problem this search is trying to solveMethods in edu.uky.ai.planning.ps with parameters of type ProblemModifier and TypeMethodDescriptionprotected abstract PlanSpaceSearchPlanSpacePlanner.makeSearch(Problem problem, SearchBudget budget) Constructors in edu.uky.ai.planning.ps with parameters of type ProblemModifierConstructorDescriptionPlanSpaceRoot(Problem problem, SearchBudget budget) Constructs a new root node of a search space for a given problem.PlanSpaceSearch(Problem problem, SearchBudget budget) Constructs a new plan space search object. -
Uses of Problem in edu.uky.ai.planning.ss
Subclasses of Problem in edu.uky.ai.planning.ssModifier and TypeClassDescriptionclassA subclass ofProblemthat propositionalizes all theStateSpaceProblem.stepsthat could possibly occur in a plan.Methods in edu.uky.ai.planning.ss with parameters of type ProblemModifier and TypeMethodDescriptionprotected BackwardSearchBackwardPlanner.makeSearch(Problem problem, SearchBudget budget) protected ForwardSearchForwardPlanner.makeSearch(Problem problem, SearchBudget budget) protected SStateSpacePlanner.makeSearch(Problem problem, SearchBudget budget) Constructors in edu.uky.ai.planning.ss with parameters of type ProblemModifierConstructorDescriptionStateSpaceProblem(Problem problem) Constructs a new state space problem from a general planning problem.