S - States classA - Action ClassE - Events classpublic abstract class DTMDPEvA<S extends State,A extends Action,E extends Event> extends DTMDP<StateEvent<S,E>,A>
| Constructor and Description |
|---|
DTMDPEvA(States<S> initial)
Creates a new infinite horizon discrete time (MDP) Problem with events
|
| Modifier and Type | Method and Description |
|---|---|
abstract Events<E> |
activeEvents(S i,
A a)
Set of events that are active from state i given that action a is taken.
|
abstract Actions<A> |
feasibleAct(S i)
Returns the set of actions available at this state.
|
Actions<A> |
feasibleActions(StateEvent<S,E> i)
Returns the set of actions available at this state.
|
abstract double |
immediateCost(S i,
A a,
E e)
Reward received when the current state is i, the action taken is a and
event e occurs.
|
double |
immediateCost(StateEvent<S,E> i,
A a)
Cost incurred when taking action a from state i
|
abstract double |
prob(S i,
E e)
Conditional event probability.
|
abstract double |
prob(S i,
S j,
A a,
E e)
Conditional destination probability.
|
double |
prob(StateEvent<S,E> i,
StateEvent<S,E> j,
A a)
Probability of going from state i to state j by taking the
action a
|
abstract States<S> |
reachable(S i,
A a,
E e)
Set of reachable states from state i given that action a is taken and
event e occurs.
|
States<StateEvent<S,E>> |
reachable(StateEvent<S,E> i,
A a)
Set of states that can be reached from this state i, after
taking the action a.
|
getSteadyStateProbabilities, setProbabilitySolver, solvegetAllStates, getNumStates, getSolverdebug, debug, debug, getDebugLevel, getOptimalPolicy, getOptimalValueFunction, getReporter, isFinite, isSolved, operation, printSolution, printSolution, setDebugLevel, setReporter, setSolver, solvepublic final States<StateEvent<S,E>> reachable(StateEvent<S,E> i, A a)
DTMDPpublic final double immediateCost(StateEvent<S,E> i, A a)
DTMDPimmediateCost in class DTMDP<StateEvent<S extends State,E extends Event>,A extends Action>i - Current Statea - Current Actionpublic final double prob(StateEvent<S,E> i, StateEvent<S,E> j, A a)
DTMDPpublic final Actions<A> feasibleActions(StateEvent<S,E> i)
InfiniteMDPfeasibleActions in class InfiniteMDP<StateEvent<S extends State,E extends Event>,A extends Action>i - Current Statepublic abstract double immediateCost(S i, A a, E e)
i - current statea - action takene - event that occurspublic abstract double prob(S i, S j, A a, E e)
i - current statej - state to reacha - action taken (given)e - event that occurs (given)public abstract double prob(S i, E e)
i - current statee - event that occurspublic abstract States<S> reachable(S i, A a, E e)
i - current statea - action takene - event that occurspublic abstract Events<E> activeEvents(S i, A a)
i - current statea - action taken