Diff for /rpl/lapack/lapack/dlarrb.f between versions 1.16 and 1.17

version 1.16, 2017/06/17 11:06:25 version 1.17, 2018/05/29 06:55:19
Line 107 Line 107
 *> \verbatim  *> \verbatim
 *>          W is DOUBLE PRECISION array, dimension (N)  *>          W is DOUBLE PRECISION array, dimension (N)
 *>          On input, W( IFIRST-OFFSET ) through W( ILAST-OFFSET ) are  *>          On input, W( IFIRST-OFFSET ) through W( ILAST-OFFSET ) are
 *>          estimates of the eigenvalues of L D L^T indexed IFIRST throug  *>          estimates of the eigenvalues of L D L^T indexed IFIRST through
 *>          ILAST.  *>          ILAST.
 *>          On output, these estimates are refined.  *>          On output, these estimates are refined.
 *> \endverbatim  *> \endverbatim
Line 178 Line 178
 *> \author Univ. of Colorado Denver  *> \author Univ. of Colorado Denver
 *> \author NAG Ltd.  *> \author NAG Ltd.
 *  *
 *> \date December 2016  *> \date June 2017
 *  *
 *> \ingroup OTHERauxiliary  *> \ingroup OTHERauxiliary
 *  *
Line 196 Line 196
      $                   RTOL2, OFFSET, W, WGAP, WERR, WORK, IWORK,       $                   RTOL2, OFFSET, W, WGAP, WERR, WORK, IWORK,
      $                   PIVMIN, SPDIAM, TWIST, INFO )       $                   PIVMIN, SPDIAM, TWIST, INFO )
 *  *
 *  -- LAPACK auxiliary routine (version 3.7.0) --  *  -- LAPACK auxiliary routine (version 3.7.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..--
 *     December 2016  *     June 2017
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       INTEGER            IFIRST, ILAST, INFO, N, OFFSET, TWIST        INTEGER            IFIRST, ILAST, INFO, N, OFFSET, TWIST
Line 237 Line 237
 *  *
       INFO = 0        INFO = 0
 *  *
   *     Quick return if possible
   *
         IF( N.LE.0 ) THEN
            RETURN
         END IF
   *
       MAXITR = INT( ( LOG( SPDIAM+PIVMIN )-LOG( PIVMIN ) ) /        MAXITR = INT( ( LOG( SPDIAM+PIVMIN )-LOG( PIVMIN ) ) /
      $           LOG( TWO ) ) + 2       $           LOG( TWO ) ) + 2
       MNWDTH = TWO * PIVMIN        MNWDTH = TWO * PIVMIN

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


CVSweb interface <joel.bertrand@systella.fr>