o
    a+)h/                     @   s   G d d de ZdS )c                   @   sP   e Zd ZdZdd Zdd Zdd Zdd	 Zd
d Zdd Z	dd Z
dd ZdS )BaseReporterz?Delegate class to provider progress reporting for the resolver.c                 C      dS )z-Called before the resolution actually starts.N )selfr   r   _C:\Users\User\Downloads\Proyecto_IoT\venv\Lib\site-packages\pip/_vendor/resolvelib/reporters.pystarting       zBaseReporter.startingc                 C   r   )zYCalled before each round of resolution starts.

        The index is zero-based.
        Nr   )r   indexr   r   r   starting_round   r   zBaseReporter.starting_roundc                 C   r   )zCalled before each round of resolution ends.

        This is NOT called if the resolution ends at this round. Use `ending`
        if you want to report finalization. The index is zero-based.
        Nr   )r   r   stater   r   r   ending_round   r   zBaseReporter.ending_roundc                 C   r   )z/Called before the resolution ends successfully.Nr   )r   r
   r   r   r   ending   r   zBaseReporter.endingc                 C   r   )a  Called when adding a new requirement into the resolve criteria.

        :param requirement: The additional requirement to be applied to filter
            the available candidaites.
        :param parent: The candidate that requires ``requirement`` as a
            dependency, or None if ``requirement`` is one of the root
            requirements passed in from ``Resolver.resolve()``.
        Nr   )r   requirementparentr   r   r   adding_requirement   r   zBaseReporter.adding_requirementc                 C   r   )zCalled when starting to attempt requirement conflict resolution.

        :param causes: The information on the collision that caused the backtracking.
        Nr   )r   causesr   r   r   resolving_conflicts!   r   z BaseReporter.resolving_conflictsc                 C   r   )z6Called when rejecting a candidate during backtracking.Nr   r   	candidater   r   r   backtracking'   r   zBaseReporter.backtrackingc                 C   r   )z9Called when adding a candidate to the potential solution.Nr   r   r   r   r   pinning*   r   zBaseReporter.pinningN)__name__
__module____qualname____doc__r   r	   r   r   r   r   r   r   r   r   r   r   r      s    
r   N)objectr   r   r   r   r   <module>   s    