Uses of Class
ai.planning.strips.Problem

Packages that use Problem
ai.planning.strips   
ai.planning.strips.ssp   
 

Uses of Problem in ai.planning.strips
 

Fields in ai.planning.strips declared as Problem
protected  Problem ToPropositionalTransformer.problem
           
 

Methods in ai.planning.strips that return Problem
protected  Problem Problem.clone()
          This class does not support cloning and an Exception will be thrown if this method is called.
protected  Problem PddlProblemAdaptor.parseProblem()
           
 Problem PddlProblemAdaptor.read(java.io.Reader r)
           This function attempts to parse characters from the given Reader until a Sentence that represents an object in the internal representation has been parsed.
static Problem Problem.read(java.io.Reader r, inf.compilers.SyntaxAdaptor<Problem> sa)
           
 

Methods in ai.planning.strips that return types with arguments of type Problem
 java.lang.Class<Problem> PddlProblemAdaptor.getInternalClass()
           This function returns the Class that holds the internal representation this adaptor translates to and from.
 

Methods in ai.planning.strips with parameters of type Problem
 java.util.Set<Goal.UgConditions> Goal.getPartialSubGoals(ActionType op, Problem p)
           This function computes the regression set of this Goal.
 void PddlProblemAdaptor.prettyPrint(int indent, Problem problem, java.io.Writer w)
           This function takes a logical Sentence which is a Java Object in the internal representation, and writes it to the given Writer as a string conforming to the KIF syntax.
static void PddlProblemAdaptor.prettyPrintProblem(int indent, Problem problem, java.io.Writer w, java.util.Properties props)
           
 void PddlProblemAdaptor.write(Problem problem, java.io.Writer w)
           This function takes a logical Sentence which is a Java Object in the internal representation, and writes it to the given Writer as a string conforming to the KIF syntax.
static void PddlProblemAdaptor.writeProblem(Problem problem, java.io.Writer w, java.util.Properties props)
           
 

Method parameters in ai.planning.strips with type arguments of type Problem
static Problem Problem.read(java.io.Reader r, inf.compilers.SyntaxAdaptor<Problem> sa)
           
 

Constructors in ai.planning.strips with parameters of type Problem
Problem.ObjectTypeSystem(Problem problem)
           
ToPropositionalTransformer(Problem problem)
           This constructor creates a transformer that translates the given STRIPS planning problem into a propositional planning problem.
 

Uses of Problem in ai.planning.strips.ssp
 

Fields in ai.planning.strips.ssp declared as Problem
protected  Problem GndFwdSearchPlanner.problem
          the Problem on which this planner is working
 

Constructors in ai.planning.strips.ssp with parameters of type Problem
GndFwdSearchPlanner.DefaultHeuristic(Problem problem)
           
GndFwdSearchPlanner(Problem problem)
           This constructor creates a new planner that will search for a solution Plan for the given Problem.
GndFwdSearchPlanner(Problem problem, java.lang.Class<? extends ai.search.informed.BestFirstSearcherForIntCostFn> seClass, java.lang.Class<? extends ai.search.informed.IntCostHeuristic> hClass, ai.search.SearchEngine.GraphType gType, long limit)