--- rpl/lapack/lapack/zhpcon.f 2010/12/21 13:53:47 1.7 +++ rpl/lapack/lapack/zhpcon.f 2011/07/22 07:38:15 1.8 @@ -1,9 +1,9 @@ SUBROUTINE ZHPCON( UPLO, N, AP, IPIV, ANORM, RCOND, WORK, INFO ) * -* -- LAPACK routine (version 3.2) -- +* -- LAPACK routine (version 3.3.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- -* November 2006 +* -- April 2011 -- * * Modified to call ZLACN2 in place of ZLACON, 10 Feb 03, SJH. * @@ -142,7 +142,7 @@ CALL ZLACN2( N, WORK( N+1 ), WORK, AINVNM, KASE, ISAVE ) IF( KASE.NE.0 ) THEN * -* Multiply by inv(L*D*L') or inv(U*D*U'). +* Multiply by inv(L*D*L**H) or inv(U*D*U**H). * CALL ZHPTRS( UPLO, N, 1, AP, IPIV, WORK, N, INFO ) GO TO 30