|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectq1471341.mp1074.integration.IntegrationResult
The class IntegrationResult
models the result of an
integration.
The result of an integration consists of the estimated integral value,
its estimated error, the number of function evaluations used for the
integration, the duration of the integration process and an identification
of the termination condition.
Constructor Summary | |
IntegrationResult(double value,
double estimatedError,
long evaluationCount,
long evaluationTime,
int terminationCondition)
Constructs an instance of an integration result. |
Method Summary | |
double |
getEstimatedError()
Returns the error estimate for the integral value. |
long |
getEvaluationCount()
Returns the number of times the integrand function has been evaluated. |
long |
getEvaluationTime()
Returns the duration of the integration in milliseconds |
long |
getTerminationCondition()
Returns the termination condition id |
double |
getValue()
Returns the estimated integral value. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public IntegrationResult(double value, double estimatedError, long evaluationCount, long evaluationTime, int terminationCondition)
value
- estimated value of the integralestimatedError
- estimated integation errorevaluationCount
- number of integrand evaluationsevaluationTime
- duration of the integration processterminationCondition
- identifier of the termination conditionMethod Detail |
public double getValue()
Double.NaN
is
returned if no estimate is available.
public double getEstimatedError()
Double.NaN
is returned if no estimate is available.
public long getEvaluationCount()
public long getEvaluationTime()
public long getTerminationCondition()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |