U
    td                     @   s   d Z dddZdddZdS ))_count_automorphisms_vf2_get_automorphisms_vf2Nc              	   C   s   | j | ||||||dS )a2  Returns the number of automorphisms of the graph.

    This function simply calls C{count_isomorphisms_vf2} with the graph
    itgraph. See C{count_isomorphisms_vf2} for an explanation of the
    parameters.

    @return: the number of automorphisms of the graph
    @see: Graph.count_isomorphisms_vf2
    color1color2Zedge_color1Zedge_color2node_compat_fnedge_compat_fn)Zcount_isomorphisms_vf2graphcolorZ
edge_colorr   r    r   M/home/sam/Atlas/atlas_env/lib/python3.8/site-packages/igraph/automorphisms.pyr      s    r   c              	   C   s   | j | ||||||dS )az  Returns all the automorphisms of the graph

    This function simply calls C{get_isomorphisms_vf2} with the graph
    itgraph. See C{get_isomorphisms_vf2} for an explanation of the
    parameters.

    @return: a list of lists, each item containing a possible mapping
      of the graph vertices to itgraph according to the automorphism
    @see: Graph.get_isomorphisms_vf2
    r   )Zget_isomorphisms_vf2r   r   r   r   r      s    r   )NNNN)NNNN)__all__r   r   r   r   r   r   <module>   s          
       