public static class TDLambda.StateEligibilityTrace
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
double |
eligibility
The eligibility value
|
HashableState |
sh
The hashed state with which the eligibility value is associated.
|
burlap.behavior.singleagent.learning.actorcritic.critics.TDLambda.VValue |
v
The value associated with the state.
|
Constructor and Description |
---|
StateEligibilityTrace(HashableState sh,
double eligibility,
burlap.behavior.singleagent.learning.actorcritic.critics.TDLambda.VValue v)
Initializes with hashed state, eligibility value and the value function value associated with the state.
|
public double eligibility
public HashableState sh
public burlap.behavior.singleagent.learning.actorcritic.critics.TDLambda.VValue v
public StateEligibilityTrace(HashableState sh, double eligibility, burlap.behavior.singleagent.learning.actorcritic.critics.TDLambda.VValue v)
sh
- the hashed input state for this eligibilityeligibility
- the eligibility of the statev
- the value function value for the state.