U
    L?hly                     @   s   d dl mZ d dlmZ d dlmZ d dlmZmZ ddl	m
Z
mZmZmZmZmZmZ edkrfdgZedZd	gZedgd
G dd	 d	Zd dlmZ d dlmZ dS )    )GROUND_TYPES)import_module)doctest_depends_onZZQQ   )DMBadInputErrorDMDomainErrorDMNonSquareMatrixErrorDMNonInvertibleMatrixErrorDMRankErrorDMShapeErrorDMValueErrorflint*DFMZground_typesc                   @   s  e Zd ZdZdZdZdZdd Zedd Z	d	d
 Z
edd Zedd Zedd Zedd Zdd Zdd Zdd Zedd Zdd Zdd Zdd  Zd!d" Zd#d$ Zd%d& Zed'd( Zed)d* Zd+d, Zd-d. Zed/d0 Zd1d2 Zed3d4 Z d5d6 Z!ed7d8 Z"d9d: Z#d;d< Z$d=d> Z%d?d@ Z&dAdB Z'dCdD Z(dEdF Z)dGdH Z*dIdJ Z+dKdL Z,dMdN Z-dOdP Z.dQdR Z/dSdT Z0dUdV Z1dWdX Z2edYdZ Z3ed[d\ Z4ed]d^ Z5ed_d` Z6dadb Z7dcdd Z8dedf Z9dgdh Z:didj Z;dkdl Z<dmdn Z=dodp Z>dqdr Z?dsdt Z@dudv ZAeBdwdxdydz ZCeBdwdxd{d| ZDeBdwdxd}d~ ZEdd ZFeBdwdxdd ZGdd ZHdddZIdd ZJdddZKeBdwdxdddZLeBdwdxdddZMdS )r   a&  
    Dense FLINT matrix. This class is a wrapper for matrices from python-flint.

    >>> from sympy.polys.domains import ZZ
    >>> from sympy.polys.matrices.dfm import DFM
    >>> dfm = DFM([[ZZ(1), ZZ(2)], [ZZ(3), ZZ(4)]], (2, 2), ZZ)
    >>> dfm
    [[1, 2], [3, 4]]
    >>> dfm.rep
    [1, 2]
    [3, 4]
    >>> type(dfm.rep)  # doctest: +SKIP
    <class 'flint._flint.fmpz_mat'>

    Usually, the DFM class is not instantiated directly, but is created as the
    internal representation of :class:`~.DomainMatrix`. When
    `SYMPY_GROUND_TYPES` is set to `flint` and `python-flint` is installed, the
    :class:`DFM` class is used automatically as the internal representation of
    :class:`~.DomainMatrix` in dense format if the domain is supported by
    python-flint.

    >>> from sympy.polys.matrices.domainmatrix import DM
    >>> dM = DM([[1, 2], [3, 4]], ZZ)
    >>> dM.rep
    [[1, 2], [3, 4]]

    A :class:`~.DomainMatrix` can be converted to :class:`DFM` by calling the
    :meth:`to_dfm` method:

    >>> dM.to_dfm()
    [[1, 2], [3, 4]]

    ZdenseTFc              	   C   s^   |  |}d|krHz||}W qP ttfk
rD   td| Y qPX n|| }| |||S )Construct from a nested list.r   z"Input should be a list of list of )_get_flint_func
ValueError	TypeErrorr	   _new)clsrowslistshapedomainZ	flint_matrep r   K/var/www/html/venv/lib/python3.8/site-packages/sympy/polys/matrices/_dfm.py__new__m   s    
zDFM.__new__c                 C   s:   |  ||| t| }||_| |_\|_|_||_|S )z)Internal constructor from a flint matrix.)_checkobjectr    r   r   rowscolsr   )r   r   r   r   objr   r   r   r   {   s    
zDFM._newc                 C   s   |  || j| jS )z>Create a new DFM with the same shape and domain but a new rep.)r   r   r   )selfr   r   r   r   _new_rep   s    zDFM._new_repc                 C   st   |  | f}||kr td|tkr>t|tjs>tdn2|tkr\t|tj	s\tdn|ttfkrpt
dd S )Nz(Shape of rep does not match shape of DFMzRep is not a flint.fmpz_matzRep is not a flint.fmpq_mat#Only ZZ and QQ are supported by DFM)ZnrowsZncolsr	   r   
isinstancer   fmpz_matRuntimeErrorr   fmpq_matNotImplementedError)r   r   r   r   Zrepshaper   r   r   r!      s    

z
DFM._checkc                 C   s   |t tfkS )z4Return True if the given domain is supported by DFM.r   r   r   r   r   r   _supports_domain   s    zDFM._supports_domainc                 C   s(   |t krtjS |tkrtjS tddS )z3Return the flint matrix class for the given domain.r(   N)r   r   r*   r   r,   r-   r.   r   r   r   r      s
    zDFM._get_flint_funcc                 C   s   |  | jS )z5Callable to create a flint matrix of the same domain.)r   r   r&   r   r   r   _func   s    z	DFM._funcc                 C   s   t |  S )zReturn ``str(self)``.)strto_ddmr0   r   r   r   __str__   s    zDFM.__str__c                 C   s   dt |  dd  S )zReturn ``repr(self)``.r      N)reprr3   r0   r   r   r   __repr__   s    zDFM.__repr__c                 C   s&   t |tstS | j|jko$| j|jkS )zReturn ``self == other``.)r)   r   NotImplementedr   r   r&   otherr   r   r   __eq__   s    
z
DFM.__eq__c                 C   s   | |||S )r   r   )r   r   r   r   r   r   r   	from_list   s    zDFM.from_listc                 C   s
   | j  S )zConvert to a nested list.)r   tolistr0   r   r   r   to_list   s    zDFM.to_listc                 C   s   |  | | jS )zReturn a copy of self.)r'   r1   r   r0   r   r   r   copy   s    zDFM.copyc                 C   s   t |  | j| jS )zConvert to a DDM.)DDMr<   r>   r   r   r0   r   r   r   r3      s    z
DFM.to_ddmc                 C   s   t |  | j| jS )zConvert to a SDM.)SDMr<   r>   r   r   r0   r   r   r   to_sdm   s    z
DFM.to_sdmc                 C   s   | S )zReturn self.r   r0   r   r   r   to_dfm   s    z
DFM.to_dfmc                 C   s   | S )aL  
        Convert to a :class:`DFM`.

        This :class:`DFM` method exists to parallel the :class:`~.DDM` and
        :class:`~.SDM` methods. For :class:`DFM` it will always return self.

        See Also
        ========

        to_ddm
        to_sdm
        sympy.polys.matrices.domainmatrix.DomainMatrix.to_dfm_or_ddm
        r   r0   r   r   r   to_dfm_or_ddm   s    zDFM.to_dfm_or_ddmc                 C   s   |  | |j|jS )zConvert from a DDM.)r<   r>   r   r   )r   ddmr   r   r   from_ddm   s    zDFM.from_ddmc                 C   sl   |  |}z|||f }W nB tk
r>   td| Y n" tk
r^   td| Y nX | |||S )z Inverse of :meth:`to_list_flat`.z'Incorrect number of elements for shape zInput should be a list of )r   r   r	   r   )r   elementsr   r   funcr   r   r   r   from_list_flat   s    
zDFM.from_list_flatc                 C   s
   | j  S )zConvert to a flat list.)r   entriesr0   r   r   r   to_list_flat   s    zDFM.to_list_flatc                 C   s   |    S )z$Convert to a flat list of non-zeros.)r3   
to_flat_nzr0   r   r   r   rL      s    zDFM.to_flat_nzc                 C   s   t ||| S )zInverse of :meth:`to_flat_nz`.)r@   from_flat_nzrC   )r   rG   datar   r   r   r   rM      s    zDFM.from_flat_nzc                 C   s   |    S )zConvert to a DOD.)r3   to_dodr0   r   r   r   rO     s    z
DFM.to_dodc                 C   s   t ||| S )zInverse of :meth:`to_dod`.)r@   from_dodrC   )r   Zdodr   r   r   r   r   rP     s    zDFM.from_dodc                 C   s   |    S )zConvert to a DOK.)r3   to_dokr0   r   r   r   rQ   
  s    z
DFM.to_dokc                 C   s   t ||| S )zInverse of :math:`to_dod`.)r@   from_dokrC   )r   Zdokr   r   r   r   r   rR     s    zDFM.from_dokc                 c   sN   | j \}}| j}t|D ]0}t|D ]"}|||f }|r$|||f V  q$qdS )z0Iterater over the non-zero values of the matrix.Nr   r   ranger&   mnr   ijZrepijr   r   r   iter_values  s    
zDFM.iter_valuesc                 c   sN   | j \}}| j}t|D ]0}t|D ]"}|||f }|r$||f|fV  q$qdS )zBIterate over indices and values of nonzero elements of the matrix.NrS   rU   r   r   r   
iter_items  s    
zDFM.iter_itemsc                 C   sl   || j kr|  S |tkr<| j tkr<| t| j| j|S |tkr`| j tkr`| 	 
| S tddS )zConvert to a new domain.r(   N)r   r?   r   r   r   r   r,   r   r   r3   
convert_torC   r-   )r&   r   r   r   r   r\   '  s    
zDFM.convert_toc              
   C   sp   | j \}}|dk r||7 }|dk r*||7 }z| j||f W S  tk
rj   td| d| d| j  Y nX dS )zGet the ``(i, j)``-th entry.r   Invalid indices (, ) for Matrix of shape Nr   r   r   
IndexError)r&   rX   rY   rV   rW   r   r   r   getitem5  s    
zDFM.getitemc              
   C   sr   | j \}}|dk r||7 }|dk r*||7 }z|| j||f< W n0 tk
rl   td| d| d| j  Y nX dS )zSet the ``(i, j)``-th entry.r   r]   r^   r_   Nr`   )r&   rX   rY   valuerV   rW   r   r   r   setitemC  s    
zDFM.setitemc                    s:   | j   fdd|D }t|tf}| ||| jS )z%Extract a submatrix with no checking.c                    s    g | ]  fd dD qS )c                    s   g | ]} |f qS r   r   ).0rY   )MrX   r   r   
<listcomp>U  s     z+DFM._extract.<locals>.<listcomp>.<listcomp>r   )re   rf   	j_indices)rX   r   rg   U  s     z DFM._extract.<locals>.<listcomp>)r   lenr<   r   )r&   	i_indicesri   Zlolr   r   rh   r   _extractQ  s    zDFM._extractc                 C   s   | j \}}g }g }|D ]P}|dk r,|| }n|}d|  krD|k s\n td| d| j  || q|D ]P}	|	dk r|	| }
n|	}
d|
  kr|k sn td|	 d| j  ||
 ql| ||S )zExtract a submatrix.r   zInvalid row index z for Matrix of shape zInvalid column index )r   ra   appendrl   )r&   r   ZcolslistrV   rW   Znew_rowsZnew_colsrX   Zi_posrY   Zj_posr   r   r   extractY  s$    


zDFM.extractc                 C   s.   | j \}}t|| }t|| }| ||S )zSlice a DFM.)r   rT   rl   )r&   ZrowsliceZcolslicerV   rW   rk   ri   r   r   r   extract_slicew  s    
zDFM.extract_slicec                 C   s   |  | j S zNegate a DFM matrix.r'   r   r0   r   r   r   neg  s    zDFM.negc                 C   s   |  | j|j S )zAdd two DFM matrices.rq   r9   r   r   r   add  s    zDFM.addc                 C   s   |  | j|j S )zSubtract two DFM matrices.rq   r9   r   r   r   sub  s    zDFM.subc                 C   s   |  | j| S )z1Multiply a DFM matrix from the right by a scalar.rq   r9   r   r   r   mul  s    zDFM.mulc                 C   s   |  || j S )z0Multiply a DFM matrix from the left by a scalar.rq   r9   r   r   r   rmul  s    zDFM.rmulc                 C   s   |   |   S )z/Elementwise multiplication of two DFM matrices.)r3   mul_elementwiserC   r9   r   r   r   rw     s    zDFM.mul_elementwisec                 C   s$   | j |jf}| | j|j || jS )zMultiply two DFM matrices.)r#   r$   r   r   r   )r&   r:   r   r   r   r   matmul  s    z
DFM.matmulc                 C   s   |   S rp   )rr   r0   r   r   r   __neg__  s    zDFM.__neg__c                 C   s   |  |}| || ||S )zReturn a zero DFM matrix.)r   r   )r   r   r   rH   r   r   r   zeros  s    
z	DFM.zerosc                 C   s   t || S )zReturn a one DFM matrix.)r@   onesrC   )r   r   r   r   r   r   r{     s    zDFM.onesc                 C   s   t || S )z%Return the identity matrix of size n.)r@   eyerC   )r   rW   r   r   r   r   r|     s    zDFM.eyec                 C   s   t || S )zReturn a diagonal matrix.)r@   diagrC   )r   rG   r   r   r   r   r}     s    zDFM.diagc                 C   s   |   || S )z/Apply a function to each entry of a DFM matrix.)r3   	applyfuncrC   )r&   rH   r   r   r   r   r~     s    zDFM.applyfuncc                 C   s   |  | j | j| jf| jS )zTranspose a DFM matrix.)r   r   	transposer$   r#   r   r0   r   r   r   r     s    zDFM.transposec                 G   s   |   jdd |D   S )zHorizontally stack matrices.c                 S   s   g | ]}|  qS r   r3   re   or   r   r   rg     s     zDFM.hstack.<locals>.<listcomp>)r3   hstackrC   r&   Zothersr   r   r   r     s    z
DFM.hstackc                 G   s   |   jdd |D   S )zVertically stack matrices.c                 S   s   g | ]}|  qS r   r   r   r   r   r   rg     s     zDFM.vstack.<locals>.<listcomp>)r3   vstackrC   r   r   r   r   r     s    z
DFM.vstackc                    s,   | j  | j\}} fddtt||D S )z$Return the diagonal of a DFM matrix.c                    s   g | ]} ||f qS r   r   )re   rX   rf   r   r   rg     s     z DFM.diagonal.<locals>.<listcomp>)r   r   rT   min)r&   rV   rW   r   r   r   diagonal  s    
zDFM.diagonalc                 C   s<   | j }t| jD ]&}t|D ]}|||f r  dS qqdS )z2Return ``True`` if the matrix is upper triangular.FT)r   rT   r#   r&   rf   rX   rY   r   r   r   is_upper  s    zDFM.is_upperc                 C   sD   | j }t| jD ].}t|d | jD ]}|||f r$  dS q$qdS )z2Return ``True`` if the matrix is lower triangular.r   FTr   rT   r#   r$   r   r   r   r   is_lower  s    zDFM.is_lowerc                 C   s   |   o|  S )z*Return ``True`` if the matrix is diagonal.)r   r   r0   r   r   r   is_diagonal  s    zDFM.is_diagonalc                 C   s>   | j }t| jD ](}t| jD ]}|||f r  dS qqdS )z1Return ``True`` if the matrix is the zero matrix.FTr   r   r   r   r   is_zero_matrix  s    zDFM.is_zero_matrixc                 C   s   |    S )z5Return the number of non-zero elements in the matrix.)r3   nnzr0   r   r   r   r     s    zDFM.nnzc                 C   s   |    S )z7Return the strongly connected components of the matrix.)r3   sccr0   r   r   r   r     s    zDFM.sccr   r   c                 C   s
   | j  S )a  
        Compute the determinant of the matrix using FLINT.

        Examples
        ========

        >>> from sympy import Matrix
        >>> M = Matrix([[1, 2], [3, 4]])
        >>> dfm = M.to_DM().to_dfm()
        >>> dfm
        [[1, 2], [3, 4]]
        >>> dfm.det()
        -2

        Notes
        =====

        Calls the ``.det()`` method of the underlying FLINT matrix.

        For :ref:`ZZ` or :ref:`QQ` this calls ``fmpz_mat_det`` or
        ``fmpq_mat_det`` respectively.

        At the time of writing the implementation of ``fmpz_mat_det`` uses one
        of several algorithms depending on the size of the matrix and bit size
        of the entries. The algorithms used are:

        - Cofactor for very small (up to 4x4) matrices.
        - Bareiss for small (up to 25x25) matrices.
        - Modular algorithms for larger matrices (up to 60x60) or for larger
          matrices with large bit sizes.
        - Modular "accelerated" for larger matrices (60x60 upwards) if the bit
          size is smaller than the dimensions of the matrix.

        The implementation of ``fmpq_mat_det`` clears denominators from each
        row (not the whole matrix) and then calls ``fmpz_mat_det`` and divides
        by the product of the denominators.

        See Also
        ========

        sympy.polys.matrices.domainmatrix.DomainMatrix.det
            Higher level interface to compute the determinant of a matrix.
        )r   detr0   r   r   r   r     s    1zDFM.detc                 C   s   | j   ddd S )a#  
        Compute the characteristic polynomial of the matrix using FLINT.

        Examples
        ========

        >>> from sympy import Matrix
        >>> M = Matrix([[1, 2], [3, 4]])
        >>> dfm = M.to_DM().to_dfm()  # need ground types = 'flint'
        >>> dfm
        [[1, 2], [3, 4]]
        >>> dfm.charpoly()
        [1, -5, -2]

        Notes
        =====

        Calls the ``.charpoly()`` method of the underlying FLINT matrix.

        For :ref:`ZZ` or :ref:`QQ` this calls ``fmpz_mat_charpoly`` or
        ``fmpq_mat_charpoly`` respectively.

        At the time of writing the implementation of ``fmpq_mat_charpoly``
        clears a denominator from the whole matrix and then calls
        ``fmpz_mat_charpoly``. The coefficients of the characteristic
        polynomial are then multiplied by powers of the denominator.

        The ``fmpz_mat_charpoly`` method uses a modular algorithm with CRT
        reconstruction. The modular algorithm uses ``nmod_mat_charpoly`` which
        uses Berkowitz for small matrices and non-prime moduli or otherwise
        the Danilevsky method.

        See Also
        ========

        sympy.polys.matrices.domainmatrix.DomainMatrix.charpoly
            Higher level interface to compute the characteristic polynomial of
            a matrix.
        N)r   charpolyZcoeffsr0   r   r   r   r   0  s    *zDFM.charpolyc                 C   s   | j }| j\}}||kr td|tkr6td| nF|tkrpz| | j W S  t	k
rl   t
dY q|X ntd| dS )a  
        Compute the inverse of a matrix using FLINT.

        Examples
        ========

        >>> from sympy import Matrix, QQ
        >>> M = Matrix([[1, 2], [3, 4]])
        >>> dfm = M.to_DM().to_dfm().convert_to(QQ)
        >>> dfm
        [[1, 2], [3, 4]]
        >>> dfm.inv()
        [[-2, 1], [3/2, -1/2]]
        >>> dfm.matmul(dfm.inv())
        [[1, 0], [0, 1]]

        Notes
        =====

        Calls the ``.inv()`` method of the underlying FLINT matrix.

        For now this will raise an error if the domain is :ref:`ZZ` but will
        use the FLINT method for :ref:`QQ`.

        The FLINT methods for :ref:`ZZ` and :ref:`QQ` are ``fmpz_mat_inv`` and
        ``fmpq_mat_inv`` respectively. The ``fmpz_mat_inv`` method computes an
        inverse with denominator. This is implemented by calling
        ``fmpz_mat_solve`` (see notes in :meth:`lu_solve` about the algorithm).

        The ``fmpq_mat_inv`` method clears denominators from each row and then
        multiplies those into the rhs identity matrix before calling
        ``fmpz_mat_solve``.

        See Also
        ========

        sympy.polys.matrices.domainmatrix.DomainMatrix.inv
            Higher level method for computing the inverse of a matrix.
        z!cannot invert a non-square matrixzfield expected, got %szmatrix is not invertiblez#DFM.inv() is not implemented for %sN)r   r   r   r   r
   r   r'   r   invZeroDivisionErrorr   r-   )r&   KrV   rW   r   r   r   r   \  s    7
zDFM.invc                 C   s$   |    \}}}| | |fS )z*Return the LU decomposition of the matrix.)r3   lurC   )r&   LUZswapsr   r   r   r     s    zDFM.luc                 C   s   | j |j ks td| j |j f | j js6td| j  | j\}}|j\}}||krftd||||f ||f}||kr|  |  S z| j	|j}W n t
k
r   tdY nX | ||| j S )a  
        Solve a matrix equation using FLINT.

        Examples
        ========

        >>> from sympy import Matrix, QQ
        >>> M = Matrix([[1, 2], [3, 4]])
        >>> dfm = M.to_DM().to_dfm().convert_to(QQ)
        >>> dfm
        [[1, 2], [3, 4]]
        >>> rhs = Matrix([1, 2]).to_DM().to_dfm().convert_to(QQ)
        >>> dfm.lu_solve(rhs)
        [[0], [1/2]]

        Notes
        =====

        Calls the ``.solve()`` method of the underlying FLINT matrix.

        For now this will raise an error if the domain is :ref:`ZZ` but will
        use the FLINT method for :ref:`QQ`.

        The FLINT methods for :ref:`ZZ` and :ref:`QQ` are ``fmpz_mat_solve``
        and ``fmpq_mat_solve`` respectively. The ``fmpq_mat_solve`` method
        uses one of two algorithms:

        - For small matrices (<25 rows) it clears denominators between the
          matrix and rhs and uses ``fmpz_mat_solve``.
        - For larger matrices it uses ``fmpq_mat_solve_dixon`` which is a
          modular approach with CRT reconstruction over :ref:`QQ`.

        The ``fmpz_mat_solve`` method uses one of four algorithms:

        - For very small (<= 3x3) matrices it uses a Cramer's rule.
        - For small (<= 15x15) matrices it uses a fraction-free LU solve.
        - Otherwise it uses either Dixon or another multimodular approach.

        See Also
        ========

        sympy.polys.matrices.domainmatrix.DomainMatrix.lu_solve
            Higher level interface to solve a matrix equation.
        zDomains must match: %s != %szField expected, got %sz(Matrix size mismatch: %s * %s vs %s * %sz Matrix det == 0; not invertible.)r   r
   Zis_Fieldr   r   r3   lu_solverC   r   Zsolver   r   r   )r&   rhsrV   rW   rY   kZ	sol_shapeZsolr   r   r   r     s     .

zDFM.lu_solvec                 C   s   |    \}}| |fS )/Return a basis for the nullspace of the matrix.)r3   	nullspacerC   )r&   rE   	nonpivotsr   r   r   r      s    zDFM.nullspaceNc                 C   s    |   j|d\}}| |fS )r   )pivots)rB   nullspace_from_rrefrC   )r&   r   Zsdmr   r   r   r   r     s    zDFM.nullspace_from_rrefc                 C   s   |     S )z+Return a particular solution to the system.)r3   
particularrC   r0   r   r   r   r     s    zDFM.particularGz?RQ?zbasisapproxc           	      C   sl   dd }||}||}d|  k r,dk s6n t d| j\}}| j |krVtd| jj|||||dS )zACall the fmpz_mat.lll() method but check rank to avoid segfaults.c                 S   s*   t | rt| jt| j S t| S d S )N)r   Zof_typefloat	numeratordenominator)xr   r   r   to_float*  s    
zDFM._lll.<locals>.to_floatg      ?r   z delta must be between 0.25 and 1z-Matrix must have full row rank for Flint LLL.)	transformdeltaetar   gram)r   r   r   Zrankr   lll)	r&   r   r   r   r   r   r   rV   rW   r   r   r   _lll   s    

zDFM._lll      ?c                 C   sD   | j tkrtd| j  n| j| jkr.td| j|d}| |S )a  Compute LLL-reduced basis using FLINT.

        See :meth:`lll_transform` for more information.

        Examples
        ========

        >>> from sympy import Matrix
        >>> M = Matrix([[1, 2, 3], [4, 5, 6]])
        >>> M.to_DM().to_dfm().lll()
        [[2, 1, 0], [-1, 1, 3]]

        See Also
        ========

        sympy.polys.matrices.domainmatrix.DomainMatrix.lll
            Higher level interface to compute LLL-reduced basis.
        lll_transform
            Compute LLL-reduced basis and transform matrix.
        ZZ expected, got %s,Matrix must not have more rows than columns.)r   )r   r   r
   r#   r$   r   r   r'   )r&   r   r   r   r   r   r   >  s    
zDFM.lllc                 C   sj   | j tkrtd| j  n| j| jkr.td| jd|d\}}| |}| || j| jf| j }||fS )ad  Compute LLL-reduced basis and transform using FLINT.

        Examples
        ========

        >>> from sympy import Matrix
        >>> M = Matrix([[1, 2, 3], [4, 5, 6]]).to_DM().to_dfm()
        >>> M_lll, T = M.lll_transform()
        >>> M_lll
        [[2, 1, 0], [-1, 1, 3]]
        >>> T
        [[-2, 1], [3, -1]]
        >>> T.matmul(M) == M_lll
        True

        See Also
        ========

        sympy.polys.matrices.domainmatrix.DomainMatrix.lll
            Higher level interface to compute LLL-reduced basis.
        lll
            Compute LLL-reduced basis without transform matrix.
        r   r   T)r   r   )	r   r   r
   r#   r$   r   r   r'   r   )r&   r   r   TZbasisZT_dfmr   r   r   lll_transform\  s    

zDFM.lll_transform)N)Fr   r   r   r   )r   )r   )N__name__
__module____qualname____doc__fmtZis_DFMZis_DDMr    classmethodr   r'   r!   r/   r   propertyr1   r4   r7   r;   r<   r>   r?   r3   rB   rC   rD   rF   rI   rK   rL   rM   rO   rP   rQ   rR   rZ   r[   r\   rb   rd   rl   rn   ro   rr   rs   rt   ru   rv   rw   rx   ry   rz   r{   r|   r}   r~   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   E   s   "
	


	
	







	
	


			
2
+
H
J

)r@   )rA   N)Zsympy.external.gmpyr   Zsympy.external.importtoolsr   Zsympy.utilities.decoratorr   Zsympy.polys.domainsr   r   
exceptionsr	   r
   r   r   r   r   r   Z__doctest_skip__r   __all__r   Zsympy.polys.matrices.ddmr@   rA   r   r   r   r   <module>*   s$   $
      A