Solution#
- class pylit.core.data_classes.Solution(x, eps, residuum)#
Bases:
objectRepresents a solution to an optimization problem.
- Parameters:
x (
ndarray) – The final iterate of the optimization, representing the solution vector.eps (
float) – The value of the objective function (depending on the chosen method) evaluated at the solutionx.residuum (
float) – The residual norm from (1) evaluated at the solutionx.