Solution#

class pylit.core.data_classes.Solution(x, eps, residuum)#

Bases: object

Represents 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 solution x.

  • residuum (float) – The residual norm from (1) evaluated at the solution x.