465 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			Fortran
		
	
	
	
			
		
		
	
	
			465 lines
		
	
	
		
			14 KiB
		
	
	
	
		
			Fortran
		
	
	
	
| *> \brief \b ZLAQZ2
 | |
| *
 | |
| *  =========== DOCUMENTATION ===========
 | |
| *
 | |
| * Online html documentation available at
 | |
| *            http://www.netlib.org/lapack/explore-html/
 | |
| *
 | |
| *> \htmlonly
 | |
| *> Download ZLAQZ2 + dependencies
 | |
| *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ZLAQZ2.f">
 | |
| *> [TGZ]</a>
 | |
| *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/ZLAQZ2.f">
 | |
| *> [ZIP]</a>
 | |
| *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/ZLAQZ2.f">
 | |
| *> [TXT]</a>
 | |
| *> \endhtmlonly
 | |
| *
 | |
| *  Definition:
 | |
| *  ===========
 | |
| *
 | |
| *      SUBROUTINE ZLAQZ2( ILSCHUR, ILQ, ILZ, N, ILO, IHI, NW, A, LDA, B,
 | |
| *     $    LDB, Q, LDQ, Z, LDZ, NS, ND, ALPHA, BETA, QC, LDQC, ZC, LDZC,
 | |
| *     $    WORK, LWORK, RWORK, REC, INFO )
 | |
| *      IMPLICIT NONE
 | |
| *
 | |
| *      Arguments
 | |
| *      LOGICAL, INTENT( IN ) :: ILSCHUR, ILQ, ILZ
 | |
| *      INTEGER, INTENT( IN ) :: N, ILO, IHI, NW, LDA, LDB, LDQ, LDZ,
 | |
| *     $    LDQC, LDZC, LWORK, REC
 | |
| *
 | |
| *      COMPLEX*16, INTENT( INOUT ) :: A( LDA, * ), B( LDB, * ), Q( LDQ,
 | |
| *     $    * ), Z( LDZ, * ), ALPHA( * ), BETA( * )
 | |
| *      INTEGER, INTENT( OUT ) :: NS, ND, INFO
 | |
| *      COMPLEX*16 :: QC( LDQC, * ), ZC( LDZC, * ), WORK( * )
 | |
| *      DOUBLE PRECISION :: RWORK( * )
 | |
| *       ..
 | |
| *
 | |
| *
 | |
| *> \par Purpose:
 | |
| *  =============
 | |
| *>
 | |
| *> \verbatim
 | |
| *>
 | |
| *> ZLAQZ2 performs AED
 | |
| *> \endverbatim
 | |
| *
 | |
| *  Arguments:
 | |
| *  ==========
 | |
| *
 | |
| *> \param[in] ILSCHUR
 | |
| *> \verbatim
 | |
| *>          ILSCHUR is LOGICAL
 | |
| *>              Determines whether or not to update the full Schur form
 | |
| *> \endverbatim
 | |
| *> \param[in] ILQ
 | |
| *> \verbatim
 | |
| *>          ILQ is LOGICAL
 | |
| *>              Determines whether or not to update the matrix Q
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in] ILZ
 | |
| *> \verbatim
 | |
| *>          ILZ is LOGICAL
 | |
| *>              Determines whether or not to update the matrix Z
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in] N
 | |
| *> \verbatim
 | |
| *>          N is INTEGER
 | |
| *>          The order of the matrices A, B, Q, and Z.  N >= 0.
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in] ILO
 | |
| *> \verbatim
 | |
| *>          ILO is INTEGER
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in] IHI
 | |
| *> \verbatim
 | |
| *>          IHI is INTEGER
 | |
| *>          ILO and IHI mark the rows and columns of (A,B) which
 | |
| *>          are to be normalized
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in] NW
 | |
| *> \verbatim
 | |
| *>          NW is INTEGER
 | |
| *>          The desired size of the deflation window.
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in,out] A
 | |
| *> \verbatim
 | |
| *>          A is COMPLEX*16 array, dimension (LDA, N)
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in] LDA
 | |
| *> \verbatim
 | |
| *>          LDA is INTEGER
 | |
| *>          The leading dimension of the array A.  LDA >= max( 1, N ).
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in,out] B
 | |
| *> \verbatim
 | |
| *>          B is COMPLEX*16 array, dimension (LDB, N)
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in] LDB
 | |
| *> \verbatim
 | |
| *>          LDB is INTEGER
 | |
| *>          The leading dimension of the array B.  LDB >= max( 1, N ).
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in,out] Q
 | |
| *> \verbatim
 | |
| *>          Q is COMPLEX*16 array, dimension (LDQ, N)
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in] LDQ
 | |
| *> \verbatim
 | |
| *>          LDQ is INTEGER
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in,out] Z
 | |
| *> \verbatim
 | |
| *>          Z is COMPLEX*16 array, dimension (LDZ, N)
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in] LDZ
 | |
| *> \verbatim
 | |
| *>          LDZ is INTEGER
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[out] NS
 | |
| *> \verbatim
 | |
| *>          NS is INTEGER
 | |
| *>          The number of unconverged eigenvalues available to
 | |
| *>          use as shifts.
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[out] ND
 | |
| *> \verbatim
 | |
| *>          ND is INTEGER
 | |
| *>          The number of converged eigenvalues found.
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[out] ALPHA
 | |
| *> \verbatim
 | |
| *>          ALPHA is COMPLEX*16 array, dimension (N)
 | |
| *>          Each scalar alpha defining an eigenvalue
 | |
| *>          of GNEP.
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[out] BETA
 | |
| *> \verbatim
 | |
| *>          BETA is COMPLEX*16 array, dimension (N)
 | |
| *>          The scalars beta that define the eigenvalues of GNEP.
 | |
| *>          Together, the quantities alpha = ALPHA(j) and
 | |
| *>          beta = BETA(j) represent the j-th eigenvalue of the matrix
 | |
| *>          pair (A,B), in one of the forms lambda = alpha/beta or
 | |
| *>          mu = beta/alpha.  Since either lambda or mu may overflow,
 | |
| *>          they should not, in general, be computed.
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in,out] QC
 | |
| *> \verbatim
 | |
| *>          QC is COMPLEX*16 array, dimension (LDQC, NW)
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in] LDQC
 | |
| *> \verbatim
 | |
| *>          LDQC is INTEGER
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in,out] ZC
 | |
| *> \verbatim
 | |
| *>          ZC is COMPLEX*16 array, dimension (LDZC, NW)
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in] LDZC
 | |
| *> \verbatim
 | |
| *>          LDZ is INTEGER
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[out] WORK
 | |
| *> \verbatim
 | |
| *>          WORK is COMPLEX*16 array, dimension (MAX(1,LWORK))
 | |
| *>          On exit, if INFO >= 0, WORK(1) returns the optimal LWORK.
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in] LWORK
 | |
| *> \verbatim
 | |
| *>          LWORK is INTEGER
 | |
| *>          The dimension of the array WORK.  LWORK >= max(1,N).
 | |
| *>
 | |
| *>          If LWORK = -1, then a workspace query is assumed; the routine
 | |
| *>          only calculates the optimal size of the WORK array, returns
 | |
| *>          this value as the first entry of the WORK array, and no error
 | |
| *>          message related to LWORK is issued by XERBLA.
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[out] RWORK
 | |
| *> \verbatim
 | |
| *>          RWORK is DOUBLE PRECISION array, dimension (N)
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[in] REC
 | |
| *> \verbatim
 | |
| *>          REC is INTEGER
 | |
| *>             REC indicates the current recursion level. Should be set
 | |
| *>             to 0 on first call.
 | |
| *> \endverbatim
 | |
| *>
 | |
| *> \param[out] INFO
 | |
| *> \verbatim
 | |
| *>          INFO is INTEGER
 | |
| *>          = 0: successful exit
 | |
| *>          < 0: if INFO = -i, the i-th argument had an illegal value
 | |
| *> \endverbatim
 | |
| *
 | |
| *  Authors:
 | |
| *  ========
 | |
| *
 | |
| *> \author Thijs Steel, KU Leuven
 | |
| *
 | |
| *> \date May 2020
 | |
| *
 | |
| *> \ingroup complex16GEcomputational
 | |
| *>
 | |
| *  =====================================================================
 | |
|       RECURSIVE SUBROUTINE ZLAQZ2( ILSCHUR, ILQ, ILZ, N, ILO, IHI, NW,
 | |
|      $                             A, LDA, B, LDB, Q, LDQ, Z, LDZ, NS,
 | |
|      $                             ND, ALPHA, BETA, QC, LDQC, ZC, LDZC,
 | |
|      $                             WORK, LWORK, RWORK, REC, INFO )
 | |
|       IMPLICIT NONE
 | |
| 
 | |
| *     Arguments
 | |
|       LOGICAL, INTENT( IN ) :: ILSCHUR, ILQ, ILZ
 | |
|       INTEGER, INTENT( IN ) :: N, ILO, IHI, NW, LDA, LDB, LDQ, LDZ,
 | |
|      $         LDQC, LDZC, LWORK, REC
 | |
| 
 | |
|       COMPLEX*16, INTENT( INOUT ) :: A( LDA, * ), B( LDB, * ), Q( LDQ,
 | |
|      $   * ), Z( LDZ, * ), ALPHA( * ), BETA( * )
 | |
|       INTEGER, INTENT( OUT ) :: NS, ND, INFO
 | |
|       COMPLEX*16 :: QC( LDQC, * ), ZC( LDZC, * ), WORK( * )
 | |
|       DOUBLE PRECISION :: RWORK( * )
 | |
| 
 | |
| *     Parameters
 | |
|       COMPLEX*16         CZERO, CONE
 | |
|       PARAMETER          ( CZERO = ( 0.0D+0, 0.0D+0 ), CONE = ( 1.0D+0,
 | |
|      $                     0.0D+0 ) )
 | |
|       DOUBLE PRECISION :: ZERO, ONE, HALF
 | |
|       PARAMETER( ZERO = 0.0D0, ONE = 1.0D0, HALF = 0.5D0 )
 | |
| 
 | |
| *     Local Scalars
 | |
|       INTEGER :: JW, KWTOP, KWBOT, ISTOPM, ISTARTM, K, K2, ZTGEXC_INFO,
 | |
|      $           IFST, ILST, LWORKREQ, QZ_SMALL_INFO
 | |
|       DOUBLE PRECISION ::SMLNUM, ULP, SAFMIN, SAFMAX, C1, TEMPR
 | |
|       COMPLEX*16 :: S, S1, TEMP
 | |
| 
 | |
| *     External Functions
 | |
|       EXTERNAL :: XERBLA, ZLAQZ0, ZLAQZ1, DLABAD, ZLACPY, ZLASET, ZGEMM,
 | |
|      $            ZTGEXC, ZLARTG, ZROT
 | |
|       DOUBLE PRECISION, EXTERNAL :: DLAMCH
 | |
| 
 | |
|       INFO = 0
 | |
| 
 | |
| *     Set up deflation window
 | |
|       JW = MIN( NW, IHI-ILO+1 )
 | |
|       KWTOP = IHI-JW+1
 | |
|       IF ( KWTOP .EQ. ILO ) THEN
 | |
|          S = CZERO
 | |
|       ELSE
 | |
|          S = A( KWTOP, KWTOP-1 )
 | |
|       END IF
 | |
| 
 | |
| *     Determine required workspace
 | |
|       IFST = 1
 | |
|       ILST = JW
 | |
|       CALL ZLAQZ0( 'S', 'V', 'V', JW, 1, JW, A( KWTOP, KWTOP ), LDA,
 | |
|      $             B( KWTOP, KWTOP ), LDB, ALPHA, BETA, QC, LDQC, ZC,
 | |
|      $             LDZC, WORK, -1, RWORK, REC+1, QZ_SMALL_INFO )
 | |
|       LWORKREQ = INT( WORK( 1 ) )+2*JW**2
 | |
|       LWORKREQ = MAX( LWORKREQ, N*NW, 2*NW**2+N )
 | |
|       IF ( LWORK .EQ.-1 ) THEN
 | |
| *        workspace query, quick return
 | |
|          WORK( 1 ) = LWORKREQ
 | |
|          RETURN
 | |
|       ELSE IF ( LWORK .LT. LWORKREQ ) THEN
 | |
|          INFO = -26
 | |
|       END IF
 | |
| 
 | |
|       IF( INFO.NE.0 ) THEN
 | |
|          CALL XERBLA( 'ZLAQZ2', -INFO )
 | |
|          RETURN
 | |
|       END IF
 | |
| 
 | |
| *     Get machine constants
 | |
|       SAFMIN = DLAMCH( 'SAFE MINIMUM' )
 | |
|       SAFMAX = ONE/SAFMIN
 | |
|       CALL DLABAD( SAFMIN, SAFMAX )
 | |
|       ULP = DLAMCH( 'PRECISION' )
 | |
|       SMLNUM = SAFMIN*( DBLE( N )/ULP )
 | |
| 
 | |
|       IF ( IHI .EQ. KWTOP ) THEN
 | |
| *        1 by 1 deflation window, just try a regular deflation
 | |
|          ALPHA( KWTOP ) = A( KWTOP, KWTOP )
 | |
|          BETA( KWTOP ) = B( KWTOP, KWTOP )
 | |
|          NS = 1
 | |
|          ND = 0
 | |
|          IF ( ABS( S ) .LE. MAX( SMLNUM, ULP*ABS( A( KWTOP,
 | |
|      $      KWTOP ) ) ) ) THEN
 | |
|             NS = 0
 | |
|             ND = 1
 | |
|             IF ( KWTOP .GT. ILO ) THEN
 | |
|                A( KWTOP, KWTOP-1 ) = CZERO
 | |
|             END IF
 | |
|          END IF
 | |
|       END IF
 | |
| 
 | |
| 
 | |
| *     Store window in case of convergence failure
 | |
|       CALL ZLACPY( 'ALL', JW, JW, A( KWTOP, KWTOP ), LDA, WORK, JW )
 | |
|       CALL ZLACPY( 'ALL', JW, JW, B( KWTOP, KWTOP ), LDB, WORK( JW**2+
 | |
|      $             1 ), JW )
 | |
| 
 | |
| *     Transform window to real schur form
 | |
|       CALL ZLASET( 'FULL', JW, JW, CZERO, CONE, QC, LDQC )
 | |
|       CALL ZLASET( 'FULL', JW, JW, CZERO, CONE, ZC, LDZC )
 | |
|       CALL ZLAQZ0( 'S', 'V', 'V', JW, 1, JW, A( KWTOP, KWTOP ), LDA,
 | |
|      $             B( KWTOP, KWTOP ), LDB, ALPHA, BETA, QC, LDQC, ZC,
 | |
|      $             LDZC, WORK( 2*JW**2+1 ), LWORK-2*JW**2, RWORK,
 | |
|      $             REC+1, QZ_SMALL_INFO )
 | |
| 
 | |
|       IF( QZ_SMALL_INFO .NE. 0 ) THEN
 | |
| *        Convergence failure, restore the window and exit
 | |
|          ND = 0
 | |
|          NS = JW-QZ_SMALL_INFO
 | |
|          CALL ZLACPY( 'ALL', JW, JW, WORK, JW, A( KWTOP, KWTOP ), LDA )
 | |
|          CALL ZLACPY( 'ALL', JW, JW, WORK( JW**2+1 ), JW, B( KWTOP,
 | |
|      $                KWTOP ), LDB )
 | |
|          RETURN
 | |
|       END IF
 | |
| 
 | |
| *     Deflation detection loop
 | |
|       IF ( KWTOP .EQ. ILO .OR. S .EQ. CZERO ) THEN
 | |
|          KWBOT = KWTOP-1
 | |
|       ELSE
 | |
|          KWBOT = IHI
 | |
|          K = 1
 | |
|          K2 = 1
 | |
|          DO WHILE ( K .LE. JW )
 | |
| *              Try to deflate eigenvalue
 | |
|                TEMPR = ABS( A( KWBOT, KWBOT ) )
 | |
|                IF( TEMPR .EQ. ZERO ) THEN
 | |
|                   TEMPR = ABS( S )
 | |
|                END IF
 | |
|                IF ( ( ABS( S*QC( 1, KWBOT-KWTOP+1 ) ) ) .LE. MAX( ULP*
 | |
|      $            TEMPR, SMLNUM ) ) THEN
 | |
| *                 Deflatable
 | |
|                   KWBOT = KWBOT-1
 | |
|                ELSE
 | |
| *                 Not deflatable, move out of the way
 | |
|                   IFST = KWBOT-KWTOP+1
 | |
|                   ILST = K2
 | |
|                   CALL ZTGEXC( .TRUE., .TRUE., JW, A( KWTOP, KWTOP ),
 | |
|      $                         LDA, B( KWTOP, KWTOP ), LDB, QC, LDQC,
 | |
|      $                         ZC, LDZC, IFST, ILST, ZTGEXC_INFO )
 | |
|                   K2 = K2+1
 | |
|                END IF
 | |
| 
 | |
|                K = K+1
 | |
|          END DO
 | |
|       END IF
 | |
| 
 | |
| *     Store eigenvalues
 | |
|       ND = IHI-KWBOT
 | |
|       NS = JW-ND
 | |
|       K = KWTOP
 | |
|       DO WHILE ( K .LE. IHI )
 | |
|          ALPHA( K ) = A( K, K )
 | |
|          BETA( K ) = B( K, K )
 | |
|          K = K+1
 | |
|       END DO
 | |
| 
 | |
|       IF ( KWTOP .NE. ILO .AND. S .NE. CZERO ) THEN
 | |
| *        Reflect spike back, this will create optimally packed bulges
 | |
|          A( KWTOP:KWBOT, KWTOP-1 ) = A( KWTOP, KWTOP-1 ) *DCONJG( QC( 1,
 | |
|      $      1:JW-ND ) )
 | |
|          DO K = KWBOT-1, KWTOP, -1
 | |
|             CALL ZLARTG( A( K, KWTOP-1 ), A( K+1, KWTOP-1 ), C1, S1,
 | |
|      $                   TEMP )
 | |
|             A( K, KWTOP-1 ) = TEMP
 | |
|             A( K+1, KWTOP-1 ) = CZERO
 | |
|             K2 = MAX( KWTOP, K-1 )
 | |
|             CALL ZROT( IHI-K2+1, A( K, K2 ), LDA, A( K+1, K2 ), LDA, C1,
 | |
|      $                 S1 )
 | |
|             CALL ZROT( IHI-( K-1 )+1, B( K, K-1 ), LDB, B( K+1, K-1 ),
 | |
|      $                 LDB, C1, S1 )
 | |
|             CALL ZROT( JW, QC( 1, K-KWTOP+1 ), 1, QC( 1, K+1-KWTOP+1 ),
 | |
|      $                 1, C1, DCONJG( S1 ) )
 | |
|          END DO
 | |
| 
 | |
| *        Chase bulges down
 | |
|          ISTARTM = KWTOP
 | |
|          ISTOPM = IHI
 | |
|          K = KWBOT-1
 | |
|          DO WHILE ( K .GE. KWTOP )
 | |
| 
 | |
| *           Move bulge down and remove it
 | |
|             DO K2 = K, KWBOT-1
 | |
|                CALL ZLAQZ1( .TRUE., .TRUE., K2, KWTOP, KWTOP+JW-1,
 | |
|      $                      KWBOT, A, LDA, B, LDB, JW, KWTOP, QC, LDQC,
 | |
|      $                      JW, KWTOP, ZC, LDZC )
 | |
|             END DO
 | |
| 
 | |
|             K = K-1
 | |
|          END DO
 | |
| 
 | |
|       END IF
 | |
| 
 | |
| *     Apply Qc and Zc to rest of the matrix
 | |
|       IF ( ILSCHUR ) THEN
 | |
|          ISTARTM = 1
 | |
|          ISTOPM = N
 | |
|       ELSE
 | |
|          ISTARTM = ILO
 | |
|          ISTOPM = IHI
 | |
|       END IF
 | |
| 
 | |
|       IF ( ISTOPM-IHI > 0 ) THEN
 | |
|          CALL ZGEMM( 'C', 'N', JW, ISTOPM-IHI, JW, CONE, QC, LDQC,
 | |
|      $               A( KWTOP, IHI+1 ), LDA, CZERO, WORK, JW )
 | |
|          CALL ZLACPY( 'ALL', JW, ISTOPM-IHI, WORK, JW, A( KWTOP,
 | |
|      $                IHI+1 ), LDA )
 | |
|          CALL ZGEMM( 'C', 'N', JW, ISTOPM-IHI, JW, CONE, QC, LDQC,
 | |
|      $               B( KWTOP, IHI+1 ), LDB, CZERO, WORK, JW )
 | |
|          CALL ZLACPY( 'ALL', JW, ISTOPM-IHI, WORK, JW, B( KWTOP,
 | |
|      $                IHI+1 ), LDB )
 | |
|       END IF
 | |
|       IF ( ILQ ) THEN
 | |
|          CALL ZGEMM( 'N', 'N', N, JW, JW, CONE, Q( 1, KWTOP ), LDQ, QC,
 | |
|      $               LDQC, CZERO, WORK, N )
 | |
|          CALL ZLACPY( 'ALL', N, JW, WORK, N, Q( 1, KWTOP ), LDQ )
 | |
|       END IF
 | |
| 
 | |
|       IF ( KWTOP-1-ISTARTM+1 > 0 ) THEN
 | |
|          CALL ZGEMM( 'N', 'N', KWTOP-ISTARTM, JW, JW, CONE, A( ISTARTM,
 | |
|      $               KWTOP ), LDA, ZC, LDZC, CZERO, WORK,
 | |
|      $               KWTOP-ISTARTM )
 | |
|         CALL ZLACPY( 'ALL', KWTOP-ISTARTM, JW, WORK, KWTOP-ISTARTM,
 | |
|      $               A( ISTARTM, KWTOP ), LDA )
 | |
|          CALL ZGEMM( 'N', 'N', KWTOP-ISTARTM, JW, JW, CONE, B( ISTARTM,
 | |
|      $               KWTOP ), LDB, ZC, LDZC, CZERO, WORK,
 | |
|      $               KWTOP-ISTARTM )
 | |
|         CALL ZLACPY( 'ALL', KWTOP-ISTARTM, JW, WORK, KWTOP-ISTARTM,
 | |
|      $               B( ISTARTM, KWTOP ), LDB )
 | |
|       END IF
 | |
|       IF ( ILZ ) THEN
 | |
|          CALL ZGEMM( 'N', 'N', N, JW, JW, CONE, Z( 1, KWTOP ), LDZ, ZC,
 | |
|      $               LDZC, CZERO, WORK, N )
 | |
|          CALL ZLACPY( 'ALL', N, JW, WORK, N, Z( 1, KWTOP ), LDZ )
 | |
|       END IF
 | |
| 
 | |
|       END SUBROUTINE
 |