o
    oÇh  ã                   @   s`   d dl mZmZmZ d dlmZ G dd„ deƒZej ee¡dd„ ƒZ	ej ee¡dd„ ƒZ
d	S )
é    )ÚKindÚ_NumberKindÚ
NumberKind)ÚMulc                       s,   e Zd ZdZef‡ fdd„	Zdd„ Z‡  ZS )Ú
MatrixKinda¶  
    Kind for all matrices in SymPy.

    Basic class for this kind is ``MatrixBase`` and ``MatrixExpr``,
    but any expression representing the matrix can have this.

    Parameters
    ==========

    element_kind : Kind
        Kind of the element. Default is
        :class:`sympy.core.kind.NumberKind`,
        which means that the matrix contains only numbers.

    Examples
    ========

    Any instance of matrix class has kind ``MatrixKind``:

    >>> from sympy import MatrixSymbol
    >>> A = MatrixSymbol('A', 2, 2)
    >>> A.kind
    MatrixKind(NumberKind)

    An expression representing a matrix may not be an instance of
    the Matrix class, but it will have kind ``MatrixKind``:

    >>> from sympy import MatrixExpr, Integral
    >>> from sympy.abc import x
    >>> intM = Integral(A, x)
    >>> isinstance(intM, MatrixExpr)
    False
    >>> intM.kind
    MatrixKind(NumberKind)

    Use ``isinstance()`` to check for ``MatrixKind`` without specifying the
    element kind. Use ``is`` to check the kind including the element kind:

    >>> from sympy import Matrix
    >>> from sympy.core import NumberKind
    >>> from sympy.matrices import MatrixKind
    >>> M = Matrix([1, 2])
    >>> isinstance(M.kind, MatrixKind)
    True
    >>> M.kind is MatrixKind(NumberKind)
    True

    See Also
    ========

    sympy.core.kind.NumberKind
    sympy.core.kind.UndefinedKind
    sympy.core.containers.TupleKind
    sympy.sets.sets.SetKind

    c                    s   t ƒ  | |¡}||_|S )N)ÚsuperÚ__new__Úelement_kind)Úclsr	   Úobj©Ú	__class__© úg/var/www/html/construction_image-detection-poc/venv/lib/python3.10/site-packages/sympy/matrices/kind.pyr   @   s   zMatrixKind.__new__c                 C   s
   d| j  S )NzMatrixKind(%s))r	   )Úselfr   r   r   Ú__repr__E   s   
zMatrixKind.__repr__)Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r   r   Ú__classcell__r   r   r   r   r      s    8r   c                 C   s*   t |tƒs
|| } }t | |j¡}t|ƒS )z½
    Return MatrixKind. The element kind is selected by recursive dispatching.
    Do not need to dispatch in reversed order because KindDispatcher
    searches for this automatically.
    )Ú
isinstancer   r   Ú_kind_dispatcherr	   ©Úk1Úk2Úelemkr   r   r   Únum_mat_mulI   s   

r   c                 C   s   t  | j|j¡}t|ƒS )zS
    Return MatrixKind. The element kind is selected by recursive dispatching.
    )r   r   r	   r   r   r   r   r   Úmat_mat_mul[   s   r   N)Úsympy.core.kindr   r   r   Úsympy.core.mulr   r   r   Úregisterr   r   r   r   r   r   Ú<module>   s   B
