£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyÊ¦•êŽ…È®FÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~èŠ©ÊÇí`ÔÑ©úë™µ'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶ê×Ó¼ãžªéUWŸÈË%DÒÕ¬ï‘]/Åcx  ‰ï2ß]ä6G[]S£ÔÏ¯rs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ                  ¯¹ægƒÛowÐø^d™ý½ßB7áyMä9ÜÖUã
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
<html>
U
    ʗRe/                     @   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   s   dS )z-Called before the resolution actually starts.N )selfr   r   /builddir/build/BUILDROOT/alt-python38-pip-22.2.1-2.el8.x86_64/opt/alt/python38/lib/python3.8/site-packages/pip/_vendor/resolvelib/reporters.pystarting   s    zBaseReporter.startingc                 C   s   dS )zYCalled before each round of resolution starts.

        The index is zero-based.
        Nr   )r   indexr   r   r   starting_round   s    zBaseReporter.starting_roundc                 C   s   dS )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   s    zBaseReporter.ending_roundc                 C   s   dS )z/Called before the resolution ends successfully.Nr   )r   r   r   r   r   ending   s    zBaseReporter.endingc                 C   s   dS )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   s    zBaseReporter.adding_requirementc                 C   s   dS )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!   s    z BaseReporter.resolving_conflictsc                 C   s   dS )z6Called when rejecting a candidate during backtracking.Nr   r   	candidater   r   r   backtracking'   s    zBaseReporter.backtrackingc                 C   s   dS )z9Called when adding a candidate to the potential solution.Nr   r   r   r   r   pinning*   s    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>       