Diff for /rpl/lapack/lapack/dsposv.f between versions 1.16 and 1.19

version 1.16, 2018/05/29 06:55:20 version 1.19, 2023/08/07 08:39:06
Line 106 Line 106
 *>          triangular part of the matrix A, and the strictly upper  *>          triangular part of the matrix A, and the strictly upper
 *>          triangular part of A is not referenced.  *>          triangular part of A is not referenced.
 *>          On exit, if iterative refinement has been successfully used  *>          On exit, if iterative refinement has been successfully used
 *>          (INFO.EQ.0 and ITER.GE.0, see description below), then A is  *>          (INFO = 0 and ITER >= 0, see description below), then A is
 *>          unchanged, if double precision factorization has been used  *>          unchanged, if double precision factorization has been used
 *>          (INFO.EQ.0 and ITER.LT.0, see description below), then the  *>          (INFO = 0 and ITER < 0, see description below), then the
 *>          array A contains the factor U or L from the Cholesky  *>          array A contains the factor U or L from the Cholesky
 *>          factorization A = U**T*U or A = L*L**T.  *>          factorization A = U**T*U or A = L*L**T.
 *> \endverbatim  *> \endverbatim
Line 191 Line 191
 *> \author Univ. of Colorado Denver  *> \author Univ. of Colorado Denver
 *> \author NAG Ltd.  *> \author NAG Ltd.
 *  *
 *> \date June 2016  
 *  
 *> \ingroup doublePOsolve  *> \ingroup doublePOsolve
 *  *
 *  =====================================================================  *  =====================================================================
       SUBROUTINE DSPOSV( UPLO, N, NRHS, A, LDA, B, LDB, X, LDX, WORK,        SUBROUTINE DSPOSV( UPLO, N, NRHS, A, LDA, B, LDB, X, LDX, WORK,
      $                   SWORK, ITER, INFO )       $                   SWORK, ITER, INFO )
 *  *
 *  -- LAPACK driver routine (version 3.8.0) --  *  -- LAPACK driver routine --
 *  -- 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..--
 *     June 2016  
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       CHARACTER          UPLO        CHARACTER          UPLO
Line 413 Line 410
    30 CONTINUE     30 CONTINUE
 *  *
 *     If we are at this place of the code, this is because we have  *     If we are at this place of the code, this is because we have
 *     performed ITER=ITERMAX iterations and never satisified the  *     performed ITER=ITERMAX iterations and never satisfied the
 *     stopping criterion, set up the ITER flag accordingly and follow  *     stopping criterion, set up the ITER flag accordingly and follow
 *     up on double precision routine.  *     up on double precision routine.
 *  *
Line 434 Line 431
 *  *
       RETURN        RETURN
 *  *
 *     End of DSPOSV.  *     End of DSPOSV
 *  *
       END        END

Removed from v.1.16  
changed lines
  Added in v.1.19


CVSweb interface <joel.bertrand@systella.fr>