Database Reference
In-Depth Information
*/
public StateActionVector[] getActionsFromStates(State
[] initStates,
State[] tarStates) throws MiningException {
throw new MiningException("not supported");
}
/**
* Adds a new action for an initial and target state to
* the action set.
*
* @param initState the initial state
* @param tarState the target state
* @return new action from initial to target state
* @throws MiningException
*/
public Action addActionForStates(State initState, State
tarState)
throws MiningException {
//...Implementation ...//
}
// ---------------------------
// Step numbers and transition probabilities
// ---------------------------
/**
* Returns probability step number of (state, action) pair
for DP version
* for conditional and unconditional case.
*
* @param state the state
* @param action the action
*
@param
cond
conditional
probability
(else
unconditional)
* @return returns step number at specified (state, action)
pair
* @throws MiningException
*/
public int getStepNumberP(State state, Action action,
boolean cond)
throws MiningException {
//...Implementation ...//
}
Search WWH ::




Custom Search