public class ApproximationResult
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
java.util.List<FunctionWeight> |
functionWeights
The function weights used to produce the predicted value.
|
double |
predictedValue
The predicted valued
|
java.util.List<StateFeature> |
stateFeatures
The state features used to produce the predicted value.
|
| Constructor and Description |
|---|
ApproximationResult(double predictedValue,
java.util.List<StateFeature> stateFeatures,
java.util.List<FunctionWeight> functionWeights)
Initializes
|
public double predictedValue
public java.util.List<StateFeature> stateFeatures
public java.util.List<FunctionWeight> functionWeights
public ApproximationResult(double predictedValue,
java.util.List<StateFeature> stateFeatures,
java.util.List<FunctionWeight> functionWeights)
predictedValue - the predicted valuestateFeatures - the state features used to produce the predicted value.functionWeights - the function weights used to produce the predicted value.