Diff for /rpl/lapack/lapack/dlarrv.f between versions 1.20 and 1.21

version 1.20, 2017/06/17 11:06:25 version 1.21, 2018/05/29 06:55:19
Line 68 Line 68
 *> \verbatim  *> \verbatim
 *>          VU is DOUBLE PRECISION  *>          VU is DOUBLE PRECISION
 *>          Upper bound of the interval that contains the desired  *>          Upper bound of the interval that contains the desired
 *>          eigenvalues. VL < VU. Needed to compute gaps on the left or right  *>          eigenvalues. VL < VU. 
 *>          end of the extremal eigenvalues in the desired RANGE.  *>          Note: VU is currently not used by this implementation of DLARRV, VU is
   *>          passed to DLARRV because it could be used compute gaps on the right end
   *>          of the extremal eigenvalues. However, with not much initial accuracy in
   *>          LAMBDA and VU, the formula can lead to an overestimation of the right gap
   *>          and thus to inadequately early RQI 'convergence'. This is currently
   *>          prevented this by forcing a small right gap. And so it turns out that VU
   *>          is currently not used by this implementation of DLARRV.
 *> \endverbatim  *> \endverbatim
 *>  *>
 *> \param[in,out] D  *> \param[in,out] D
Line 286 Line 292
      $                   IBLOCK, INDEXW, GERS, Z, LDZ, ISUPPZ,       $                   IBLOCK, INDEXW, GERS, Z, LDZ, ISUPPZ,
      $                   WORK, IWORK, INFO )       $                   WORK, IWORK, INFO )
 *  *
 *  -- LAPACK auxiliary routine (version 3.7.0) --  *  -- LAPACK auxiliary routine (version 3.8.0) --
 *  -- 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  *     June 2016
Line 344 Line 350
 *     ..  *     ..
   
       INFO = 0        INFO = 0
   *
   *     Quick return if possible
   *
         IF( N.LE.0 ) THEN
            RETURN
         END IF
   *
 *     The first N entries of WORK are reserved for the eigenvalues  *     The first N entries of WORK are reserved for the eigenvalues
       INDLD = N+1        INDLD = N+1
       INDLLD= 2*N+1        INDLLD= 2*N+1

Removed from v.1.20  
changed lines
  Added in v.1.21


CVSweb interface <joel.bertrand@systella.fr>