Uses of Class
ai.planning.strips.Action

Packages that use Action
ai.planning.strips   
 

Uses of Action in ai.planning.strips
 

Fields in ai.planning.strips with type parameters of type Action
protected  java.util.List<Action> SequentialPlan.actions
          the sequence of Actions contained in this Plan
 

Methods in ai.planning.strips that return Action
 Action Action.clone()
           This function returns an equal copy of this action.
 

Methods in ai.planning.strips that return types with arguments of type Action
 java.util.List<Action> ActionType.getApplicableActions(WorldState state, boolean allowComplements)
           This function returns a List of all the Actions that are instances of this ActionType and which are applicable in the given WorldState.
 

Methods in ai.planning.strips with parameters of type Action
 void SequentialPlan.append(Action act)
           This function adds the given Action to the end of this plan.
 boolean Action.equals(Action other)
           
 void SequentialPlan.prepend(Action act)
           This function adds the given Action to the beginning of this plan.
 Goal Goal.regress(Action action, Domain domain)
           This function computes a new Goal that is the result of regressing this Goal through the given Action.
static void PddlPlanAdaptor.writeAction(Action act, java.io.Writer w, java.util.Properties props)
           
 

Method parameters in ai.planning.strips with type arguments of type Action
static void PddlPlanAdaptor.prettyPrintActions(int indent, java.util.List<Action> actions, java.io.Writer w, java.util.Properties props)
           
static void PddlPlanAdaptor.writeActions(java.util.List<Action> actions, java.io.Writer w, java.util.Properties props)
           
 

Constructor parameters in ai.planning.strips with type arguments of type Action
SequentialPlan(Domain domain, java.util.List<Action> acts)
           This constructor creates a new plan consisting of the given actions in the given order.