public static class BFSMarkovOptionModel.OptionScanNode
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
double |
cumulativeDiscountedReward
The cumulative discounted reward received reaching this node.
|
int |
nSteps
The number of steps taken to reach this node.
|
double |
probability
the *un*-discounted probability of reaching this search node
|
State |
s
the state this search node wraps
|
Constructor and Description |
---|
OptionScanNode() |
OptionScanNode(BFSMarkovOptionModel.OptionScanNode src,
State s,
double transProb,
double discountedR)
Initializes.
|
OptionScanNode(State s) |
public State s
public double probability
public double cumulativeDiscountedReward
public int nSteps
public OptionScanNode()
public OptionScanNode(State s)
public OptionScanNode(BFSMarkovOptionModel.OptionScanNode src, State s, double transProb, double discountedR)
src
- a source parent node from which this node was generateds
- the state this search node wrapstransProb
- the transition probability of reaching this node from the source nodediscountedR
- the discounted reward received from reaching this node from the source node.