protected static class CartPoleDomain.MovementAction extends Action
actionObservers, domain, name, parameterClasses, parameterOrderGroup| Constructor and Description |
|---|
CartPoleDomain.MovementAction(java.lang.String name,
Domain domain,
double dir,
CartPoleDomain.CPPhysicsParams physParams)
Initializes.
|
| Modifier and Type | Method and Description |
|---|---|
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, applicableInState, clearAllActionsObservers, deterministicTransition, equals, getAllApplicableGroundedActions, getAllApplicableGroundedActionsFromActionList, getDomain, getName, getParameterClasses, getParameterOrderGroups, getTransitions, hashCode, init, isPrimitive, parametersAreObjects, performAction, performActionpublic CartPoleDomain.MovementAction(java.lang.String name,
Domain domain,
double dir,
CartPoleDomain.CPPhysicsParams physParams)
name - the name of the action.domain - the domain object to which this action will be associated.dir - the direction of force applied to the cart.physParams - the CartPoleDomain.CPPhysicsParams object specifying the physics to use for movementprotected 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