Uses of Class
ai.planning.propositional.SequentialPlan

Packages that use SequentialPlan
ai.planning.propositional   
ai.planning.propositional.ssp   
ai.planning.strips   
 

Uses of SequentialPlan in ai.planning.propositional
 

Fields in ai.planning.propositional with type parameters of type SequentialPlan
protected static inf.compilers.SyntaxAdaptor<SequentialPlan> SequentialPlan.ioAdaptor
          the SyntaxAdaptor used for input/output operations
 

Methods in ai.planning.propositional that return SequentialPlan
protected  SequentialPlan SequentialPlan.clone()
           This function creates a copy of this SequentialPlan that contains the same Actions as this SequentialPlan.
protected static SequentialPlan PplSequentialPlanAdaptor.parseSequentialPlan(inf.compilers.LexicalAnalyzer scanner, java.util.Properties props)
           This function reads tokens from the given LexicalAnalyzer and attempts to create a SequentialPlan that corresponds to the parsed tokens.
 SequentialPlan PplSequentialPlanAdaptor.read(java.io.Reader r)
           This function attempts to parse characters from the given Reader until a SequentialPlan that represents an object in the internal representation has been parsed.
static SequentialPlan SequentialPlan.read(java.io.Reader r, inf.compilers.SyntaxAdaptor<SequentialPlan> sa)
           This function can be used to parse a Plan from the given Reader.
static SequentialPlan SequentialPlan.readFromFile(java.io.File file)
           This convenience function can be used to read a SequentialPlan from the given File.
 

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

Methods in ai.planning.propositional with parameters of type SequentialPlan
 void PplSequentialPlanAdaptor.prettyPrint(int indent, SequentialPlan plan, java.io.Writer w)
           This function takes a SequentialPlan which is a Java Object in the internal representation, and writes it to the given Writer as a string conforming to the PPL syntax.
protected static void PplSequentialPlanAdaptor.prettyPrintSequentialPlan(int indent, SequentialPlan plan, java.io.Writer w, java.util.Properties props)
           This function writes the given SequentialPlan to the given Writer, using the given Properties.
 void PplSequentialPlanAdaptor.write(SequentialPlan plan, java.io.Writer w)
           This function takes a SequentialPlan which is a Java Object in the internal representation, and writes it to the given Writer as a string conforming to the PPL syntax.
protected static void PplSequentialPlanAdaptor.writeSequentialPlan(SequentialPlan plan, java.io.Writer w, java.util.Properties props)
           This function writes the given SequentialPlan to the given Writer, using the given Properties.
 

Method parameters in ai.planning.propositional with type arguments of type SequentialPlan
static SequentialPlan SequentialPlan.read(java.io.Reader r, inf.compilers.SyntaxAdaptor<SequentialPlan> sa)
           This function can be used to parse a Plan from the given Reader.
static void SequentialPlan.setSyntax(inf.compilers.SyntaxAdaptor<SequentialPlan> sa)
           This function can be used to define the syntax with which instances of this class are written or read.
 

Uses of SequentialPlan in ai.planning.propositional.ssp
 

Methods in ai.planning.propositional.ssp that return SequentialPlan
 SequentialPlan ForwardSearchPlanner.doPlanSearch()
           This function will search for a solution to the given planning Problem.
 

Uses of SequentialPlan in ai.planning.strips
 

Methods in ai.planning.strips with parameters of type SequentialPlan
 SequentialPlan ToPropositionalTransformer.transformPlan(SequentialPlan pPlan)