Database Reference
In-Depth Information
/**
* Sets probability step number of (state, action) pair for
DP version
* for conditional and unconditional case.
*
* @param state the state
* @param action the action
* @param the step number at specified (state, action) pair
*
@param
cond
conditional
probability
(else
unconditional)
* @throws MiningException
*/
public void setStepNumberP(State state, Action action,
int stepNumber,
boolean cond) throws MiningException {
//...Implementation ...//
}
/**
* Returns transition probability for DP version of (state,
action) pair
* for conditional and unconditional case.
*
* @param state the state
* @param action the action
*
@param
cond
conditional
probability
(else
unconditional)
* @return returns transition probability at specified
(state, action) pair
* @throws MiningException
*/
public double getTransP(State state, Action action, bool-
ean cond)
throws MiningException {
//...Implementation ...//
}
/**
* Sets transition probability for DP version of (state,
action) pair
* for conditional and unconditional case.
*
* @param state the state
* @param action the action
Search WWH ::




Custom Search