public class BlocksWorld.StackAction extends Action
actionObservers, domain, name, parameterClasses, parameterOrderGroup| Constructor and Description |
|---|
BlocksWorld.StackAction(java.lang.String name,
Domain domain) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
applicableInState(State st,
java.lang.String[] params)
Returns true if this action can be applied in this specified state with the specified parameters.
|
java.util.List<TransitionProbability> |
getTransitions(State s,
java.lang.String[] params)
Returns the transition probabilities for applying this action in the given state with the given set of parameters.
|
protected State |
performActionHelper(State st,
java.lang.String[] params)
This method determines what happens when an action is applied in the given state with the given parameters.
|
addActionObserver, applicableInState, clearAllActionsObservers, deterministicTransition, equals, getAllApplicableGroundedActions, getAllApplicableGroundedActionsFromActionList, getDomain, getName, getParameterClasses, getParameterOrderGroups, getTransitions, hashCode, init, isPrimitive, parametersAreObjects, performAction, performActionpublic BlocksWorld.StackAction(java.lang.String name,
Domain domain)
public boolean applicableInState(State st, java.lang.String[] params)
ActionapplicableInState in class Actionst - the state to perform the action onparams - a String array specifying the action object parametersprotected State performActionHelper(State st, java.lang.String[] params)
ActionperformActionHelper in class Actionst - the state to perform the action onparams - a String array specifying the action object parameterspublic java.util.List<TransitionProbability> getTransitions(State s, java.lang.String[] params)
ActionTransitionProbability objects. The list
is only required to contain transitions with non-zero probability. Since not all planning algorithms require
the full transition dynamics (and since it's impossible to enumerate them in some infinite state space domains),
this method is not requried to be implemented. However, it will throw an UnsupportedOperationException
if it is not overriden by the Action subclass if it is called by an algorithm that requires it.getTransitions in class Actions - the state from which the transition probabilities when applying this action will be returned.params - a String array specifying the action object parameters