JavaScript is disabled on your browser.
Skip navigation links
Overview
Package
Class
Tree
Deprecated
Index
Help
Prev Class
Next Class
Frames
No Frames
All Classes
Summary:
Nested |
Field |
Constr |
Method
Detail:
Field |
Constr |
Method
burlap.behavior.singleagent.planning.stochastic.dpoperator
Interface DPOperator
All Known Subinterfaces:
DifferentiableDPOperator
All Known Implementing Classes:
BellmanOperator
,
DifferentiableSoftmaxOperator
,
SoftmaxOperator
,
SubDifferentiableMaxOperator
public interface
DPOperator
Defines a function for applying a dynamic programming operator (e.g., reducing the Q-values into a state value). The standard approach is the
BellmanOperator
, which applies max operator.
Author:
James MacGlashan.
Method Summary
All Methods
Instance Methods
Abstract Methods
Modifier and Type
Method and Description
double
apply
(double[] qs)
Applies the operator on the input q-values and returns the result.
Method Detail
apply
double apply(double[] qs)
Applies the operator on the input q-values and returns the result.
Parameters:
qs
- the q-values on which the operator is to be applied.
Returns:
the result of the operator
Skip navigation links
Overview
Package
Class
Tree
Deprecated
Index
Help
Prev Class
Next Class
Frames
No Frames
All Classes
Summary:
Nested |
Field |
Constr |
Method
Detail:
Field |
Constr |
Method