Diff for /rpl/lapack/lapack/dlarrk.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 137 Line 137
 *> \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 145 Line 145
       SUBROUTINE DLARRK( N, IW, GL, GU,        SUBROUTINE DLARRK( N, IW, GL, GU,
      $                    D, E2, PIVMIN, RELTOL, W, WERR, INFO)       $                    D, E2, PIVMIN, RELTOL, W, WERR, 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   INFO, IW, N        INTEGER   INFO, IW, N
Line 179 Line 179
 *     ..  *     ..
 *     .. Executable Statements ..  *     .. Executable Statements ..
 *  *
   *     Quick return if possible
   *
         IF( N.LE.0 ) THEN
            INFO = 0
            RETURN
         END IF
   *
 *     Get machine constants  *     Get machine constants
       EPS = DLAMCH( 'P' )        EPS = DLAMCH( 'P' )
   

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


CVSweb interface <joel.bertrand@systella.fr>