public class ECorrelatedQJointPolicy extends MAQSourcePolicy
Policy.ActionProb, Policy.GroundedAnnotatedAction, Policy.PolicyUndefinedException
Modifier and Type | Field and Description |
---|---|
protected double |
epsilon
The epsilon parameter specifying how often random joint actions are returned
|
protected CorrelatedEquilibriumSolver.CorrelatedEquilibriumObjective |
objectiveType
The correlated Q objective type being solved
|
protected MultiAgentQSourceProvider |
qSourceProvider
The multi-agent q-source provider
|
agentsInJointPolicy, agentsSyncrhonizedSoFar, lastSyncedState, lastSynchronizedJointAction
annotateOptionDecomposition, evaluateDecomposesOptions
Constructor and Description |
---|
ECorrelatedQJointPolicy(CorrelatedEquilibriumSolver.CorrelatedEquilibriumObjective objectiveType,
double epsilon)
Initializes with the correlated equilibrium objective and the epsilon probability of a random joint action.
|
ECorrelatedQJointPolicy(double epsilon)
Initializes with the epislon probability of a random joint action.
|
Modifier and Type | Method and Description |
---|---|
JointPolicy |
copy()
Creates a copy of this joint policy and returns it.
|
AbstractGroundedAction |
getAction(State s)
This method will return an action sampled by the policy for the given state.
|
java.util.List<Policy.ActionProb> |
getActionDistributionForState(State s)
This method will return action probability distribution defined by the policy.
|
boolean |
isDefinedFor(State s)
Specifies whether this policy is defined for the input state.
|
boolean |
isStochastic()
Indicates whether the policy is stochastic or deterministic.
|
void |
setCorrelatedQObjective(CorrelatedEquilibriumSolver.CorrelatedEquilibriumObjective objectiveType)
Sets the correlated equilibrium objective to be solved.
|
void |
setQSourceProvider(MultiAgentQSourceProvider provider)
Sets the
MultiAgentQSourceProvider that will be used to define this object's joint policy. |
void |
setTargetAgent(java.lang.String agentName)
Sets the target privledged agent from which this joint policy is defined.
|
getAgentsInJointPolicy, getAgentSynchronizedActionSelection, getAllJointActions, setAgentsInJointPolicy, setAgentsInJointPolicy, setAgentsInJointPolicyFromWorld
evaluateBehavior, evaluateBehavior, evaluateBehavior, evaluateBehavior, evaluateBehavior, evaluateMethodsShouldAnnotateOptionDecomposition, evaluateMethodsShouldDecomposeOption, followAndRecordPolicy, followAndRecordPolicy, getDeterministicPolicy, getProbOfAction, getProbOfActionGivenDistribution, getProbOfActionGivenDistribution, sampleFromActionDistribution
protected MultiAgentQSourceProvider qSourceProvider
protected double epsilon
protected CorrelatedEquilibriumSolver.CorrelatedEquilibriumObjective objectiveType
public ECorrelatedQJointPolicy(double epsilon)
epsilon
- the probability that a random joint action is returned.public ECorrelatedQJointPolicy(CorrelatedEquilibriumSolver.CorrelatedEquilibriumObjective objectiveType, double epsilon)
objectiveType
- the correlated equilibirum objective.epsilon
- the probability that a random joint action is returned.public void setCorrelatedQObjective(CorrelatedEquilibriumSolver.CorrelatedEquilibriumObjective objectiveType)
objectiveType
- the correlated equilibrium objective to be solved.public void setTargetAgent(java.lang.String agentName)
JointPolicy
setTargetAgent
in class JointPolicy
agentName
- the name of the target agent.public JointPolicy copy()
JointPolicy
copy
in class JointPolicy
public AbstractGroundedAction getAction(State s)
Policy
public java.util.List<Policy.ActionProb> getActionDistributionForState(State s)
Policy
getActionDistributionForState
in class Policy
s
- the state for which an action distribution should be returnedpublic boolean isStochastic()
Policy
isStochastic
in class Policy
public boolean isDefinedFor(State s)
Policy
isDefinedFor
in class Policy
s
- the input state to test for whether this policy is definedState
s, false otherwise.public void setQSourceProvider(MultiAgentQSourceProvider provider)
MAQSourcePolicy
MultiAgentQSourceProvider
that will be used to define this object's joint policy.setQSourceProvider
in class MAQSourcePolicy
provider
- the MultiAgentQSourceProvider
that will be used to define this object's joint policy.