public class TabulatedDomainWrapper.ActionWrapper extends Action
| Modifier and Type | Field and Description |
|---|---|
protected Action |
srcAction |
actionObservers, domain, name, parameterClasses, parameterOrderGroup| Constructor and Description |
|---|
TabulatedDomainWrapper.ActionWrapper(Domain domain,
Action action)
Constructs
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
applicableInState(State s,
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 s,
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, performActionprotected Action srcAction
public boolean applicableInState(State s, java.lang.String[] params)
ActionapplicableInState in class Actions - the state to perform the action onparams - a String array specifying the action object parametersprotected State performActionHelper(State s, java.lang.String[] params)
ActionperformActionHelper in class Actions - 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