Interface StochasticRootFinder
public interface StochasticRootFinder
- Version:
- 1.0
- Author:
- Christian Fries, Stefan Sedlmair
-
Method Summary
Modifier and TypeMethodDescriptiondouble
int
boolean
isDone()
void
setValue
(RandomVariable value)
-
Method Details
-
getNextPoint
RandomVariable getNextPoint()- Returns:
- Next point for which a value should be set using
setValue
.
-
setValue
- Parameters:
value
- Value corresponding to point returned by previousgetNextPoint
call.
-
getNumberOfIterations
int getNumberOfIterations()- Returns:
- Returns the numberOfIterations.
-
getBestPoint
RandomVariable getBestPoint()- Returns:
- Best point obtained so far
-
getAccuracy
double getAccuracy()- Returns:
- Returns the accuracy.
-
isDone
boolean isDone()- Returns:
- Returns true if further improvement is not possible.
-