Source code for PEPit.operators.monotone

from PEPit.function import Function


[docs] class MonotoneOperator(Function): """ The :class:`MonotoneOperator` class overwrites the `add_class_constraints` method of :class:`Function`, implementing interpolation constraints for the class of maximally monotone operators. Note: Operator values can be requested through `gradient` and `function values` should not be used. General maximally monotone operators are not characterized by any parameter, hence can be instantiated as Example: >>> from PEPit import PEP >>> from PEPit.operators import MonotoneOperator >>> problem = PEP() >>> h = problem.declare_function(function_class=MonotoneOperator) References: [1] H. H. Bauschke and P. L. Combettes (2017). Convex Analysis and Monotone Operator Theory in Hilbert Spaces. Springer New York, 2nd ed. """ def __init__(self, is_leaf=True, decomposition_dict=None, reuse_gradient=False, name=None): """ Args: is_leaf (bool): True if self is defined from scratch. False if self is defined as linear combination of leaf . decomposition_dict (dict): Decomposition of self as linear combination of leaf :class:`Function` objects. Keys are :class:`Function` objects and values are their associated coefficients. reuse_gradient (bool): If True, the same subgradient is returned when one requires it several times on the same :class:`Point`. If False, a new subgradient is computed each time one is required. name (str): name of the object. None by default. Can be updated later through the method `set_name`. """ super().__init__(is_leaf=is_leaf, decomposition_dict=decomposition_dict, reuse_gradient=reuse_gradient, name=name, )
[docs] @staticmethod def set_monotonicity_constraint_i_j(xi, gi, fi, xj, gj, fj, ): """ Set monotonicity constraint for operators. """ # Set constraint constraint = ((gi - gj) * (xi - xj) >= 0) return constraint
[docs] def add_class_constraints(self): """ Formulates the list of interpolation constraints for self (maximally monotone operator), see, e.g., [1, Theorem 20.21]. """ self.add_constraints_from_two_lists_of_points(list_of_points_1=self.list_of_points, list_of_points_2=self.list_of_points, constraint_name="monotonicity", set_class_constraint_i_j=self.set_monotonicity_constraint_i_j, symmetry=True, )