Interface BatchLSObserver
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Observer for
batch least squares estimator iterations.
This interface is intended to be implemented by users to monitor the progress of the estimator during estimation.
- Since:
- 8.0
- Author:
- Luc Maisonobe
-
Method Summary
Modifier and TypeMethodDescriptionvoidevaluationPerformed(int iterationsCount, int evaluationsCount, Orbit[] orbits, ParameterDriversList estimatedOrbitalParameters, ParameterDriversList estimatedPropagatorParameters, ParameterDriversList estimatedMeasurementsParameters, EstimationsProvider evaluationsProvider, LeastSquaresProblem.Evaluation lspEvaluation) Notification callback for the end of each evaluation.
-
Method Details
-
evaluationPerformed
void evaluationPerformed(int iterationsCount, int evaluationsCount, Orbit[] orbits, ParameterDriversList estimatedOrbitalParameters, ParameterDriversList estimatedPropagatorParameters, ParameterDriversList estimatedMeasurementsParameters, EstimationsProvider evaluationsProvider, LeastSquaresProblem.Evaluation lspEvaluation) Notification callback for the end of each evaluation.- Parameters:
iterationsCount- iterations countevaluationsCount- evaluations countorbits- current estimated orbitsestimatedOrbitalParameters- estimated orbital parametersestimatedPropagatorParameters- estimated propagator parametersestimatedMeasurementsParameters- estimated measurements parametersevaluationsProvider- provider for measurements evaluations resulting from the current estimated orbit (this is an unmodifiable view of the current evaluations, its content is changed at each iteration)lspEvaluation- current evaluation of the underlyingleast squares problem
-