Diff for /rpl/lapack/lapack/dsytri.f between versions 1.7 and 1.8

version 1.7, 2010/12/21 13:53:39 version 1.8, 2011/07/22 07:38:12
Line 1 Line 1
       SUBROUTINE DSYTRI( UPLO, N, A, LDA, IPIV, WORK, INFO )        SUBROUTINE DSYTRI( UPLO, N, A, LDA, IPIV, WORK, INFO )
 *  *
 *  -- LAPACK routine (version 3.2) --  *  -- LAPACK routine (version 3.3.1) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --  *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--  *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2006  *  -- April 2011                                                      --
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       CHARACTER          UPLO        CHARACTER          UPLO
Line 127 Line 127
 *  *
       IF( UPPER ) THEN        IF( UPPER ) THEN
 *  *
 *        Compute inv(A) from the factorization A = U*D*U'.  *        Compute inv(A) from the factorization A = U*D*U**T.
 *  *
 *        K is the main loop index, increasing from 1 to N in steps of  *        K is the main loop index, increasing from 1 to N in steps of
 *        1 or 2, depending on the size of the diagonal blocks.  *        1 or 2, depending on the size of the diagonal blocks.
Line 216 Line 216
 *  *
       ELSE        ELSE
 *  *
 *        Compute inv(A) from the factorization A = L*D*L'.  *        Compute inv(A) from the factorization A = L*D*L**T.
 *  *
 *        K is the main loop index, increasing from 1 to N in steps of  *        K is the main loop index, increasing from 1 to N in steps of
 *        1 or 2, depending on the size of the diagonal blocks.  *        1 or 2, depending on the size of the diagonal blocks.

Removed from v.1.7  
changed lines
  Added in v.1.8


CVSweb interface <joel.bertrand@systella.fr>