Diff for /rpl/lapack/lapack/dgebak.f between versions 1.16 and 1.18

version 1.16, 2018/05/29 07:17:50 version 1.18, 2023/08/07 08:38:47
Line 47 Line 47
 *> \verbatim  *> \verbatim
 *>          JOB is CHARACTER*1  *>          JOB is CHARACTER*1
 *>          Specifies the type of backward transformation required:  *>          Specifies the type of backward transformation required:
 *>          = 'N', do nothing, return immediately;  *>          = 'N': do nothing, return immediately;
 *>          = 'P', do backward transformation for permutation only;  *>          = 'P': do backward transformation for permutation only;
 *>          = 'S', do backward transformation for scaling only;  *>          = 'S': do backward transformation for scaling only;
 *>          = 'B', do backward transformations for both permutation and  *>          = 'B': do backward transformations for both permutation and
 *>                 scaling.  *>                 scaling.
 *>          JOB must be the same as the argument JOB supplied to DGEBAL.  *>          JOB must be the same as the argument JOB supplied to DGEBAL.
 *> \endverbatim  *> \endverbatim
Line 122 Line 122
 *> \author Univ. of Colorado Denver  *> \author Univ. of Colorado Denver
 *> \author NAG Ltd.  *> \author NAG Ltd.
 *  *
 *> \date December 2016  
 *  
 *> \ingroup doubleGEcomputational  *> \ingroup doubleGEcomputational
 *  *
 *  =====================================================================  *  =====================================================================
       SUBROUTINE DGEBAK( JOB, SIDE, N, ILO, IHI, SCALE, M, V, LDV,        SUBROUTINE DGEBAK( JOB, SIDE, N, ILO, IHI, SCALE, M, V, LDV,
      $                   INFO )       $                   INFO )
 *  *
 *  -- LAPACK computational routine (version 3.7.0) --  *  -- LAPACK computational 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..--
 *     December 2016  
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       CHARACTER          JOB, SIDE        CHARACTER          JOB, SIDE
Line 239 Line 236
      $            GO TO 40       $            GO TO 40
                IF( I.LT.ILO )                 IF( I.LT.ILO )
      $            I = ILO - II       $            I = ILO - II
                K = SCALE( I )                 K = INT( SCALE( I ) )
                IF( K.EQ.I )                 IF( K.EQ.I )
      $            GO TO 40       $            GO TO 40
                CALL DSWAP( M, V( I, 1 ), LDV, V( K, 1 ), LDV )                 CALL DSWAP( M, V( I, 1 ), LDV, V( K, 1 ), LDV )
Line 253 Line 250
      $            GO TO 50       $            GO TO 50
                IF( I.LT.ILO )                 IF( I.LT.ILO )
      $            I = ILO - II       $            I = ILO - II
                K = SCALE( I )                 K = INT( SCALE( I ) )
                IF( K.EQ.I )                 IF( K.EQ.I )
      $            GO TO 50       $            GO TO 50
                CALL DSWAP( M, V( I, 1 ), LDV, V( K, 1 ), LDV )                 CALL DSWAP( M, V( I, 1 ), LDV, V( K, 1 ), LDV )

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


CVSweb interface <joel.bertrand@systella.fr>