Java Code Examples for burlap.behavior.policy.PolicyUtils#actionProbFromEnum()
The following examples show how to use
burlap.behavior.policy.PolicyUtils#actionProbFromEnum() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: EGreedyJointPolicy.java From burlap with Apache License 2.0 | 4 votes |
@Override public double actionProb(State s, Action a) { return PolicyUtils.actionProbFromEnum(this, s, a); }
Example 2
Source File: ECorrelatedQJointPolicy.java From burlap with Apache License 2.0 | 4 votes |
@Override public double actionProb(State s, Action a) { return PolicyUtils.actionProbFromEnum(this, s, a); }
Example 3
Source File: EGreedyMaxWellfare.java From burlap with Apache License 2.0 | 4 votes |
@Override public double actionProb(State s, Action a) { return PolicyUtils.actionProbFromEnum(this, s, a); }
Example 4
Source File: EMinMaxPolicy.java From burlap with Apache License 2.0 | 4 votes |
@Override public double actionProb(State s, Action a) { return PolicyUtils.actionProbFromEnum(this, s, a); }
Example 5
Source File: PolicyFromJointPolicy.java From burlap with Apache License 2.0 | 4 votes |
@Override public double actionProb(State s, Action a) { return PolicyUtils.actionProbFromEnum(this, s, a); }
Example 6
Source File: ApprenticeshipLearning.java From burlap with Apache License 2.0 | 4 votes |
@Override public double actionProb(State s, Action a) { return PolicyUtils.actionProbFromEnum(this, s, a); }
Example 7
Source File: BoltzmannActor.java From burlap with Apache License 2.0 | 4 votes |
@Override public double actionProb(State s, Action a) { return PolicyUtils.actionProbFromEnum(this, s, a); }