Package pulse
Interface Response
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
Calculation
,PolylineOptimiser.PolylineResponse
,SimpleResponse
public interface Response extends Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Segment
accessibleRange()
double
evaluate(double t)
OptimiserStatistic
getOptimiserStatistic()
double
objectiveFunction(GeneralTask task)
Calculates the value of the objective function used to identify the current state of the optimiser.
-
-
-
Method Detail
-
evaluate
double evaluate(double t)
-
accessibleRange
Segment accessibleRange()
-
objectiveFunction
double objectiveFunction(GeneralTask task) throws SolverException
Calculates the value of the objective function used to identify the current state of the optimiser.- Parameters:
task
-- Returns:
- the value of the objective function in the current state
- Throws:
SolverException
-
getOptimiserStatistic
OptimiserStatistic getOptimiserStatistic()
-
-