Diff for /rpl/lapack/lapack/dlarre.f between versions 1.19 and 1.24

version 1.19, 2017/06/17 10:53:56 version 1.24, 2023/08/07 08:38:57
Line 150 Line 150
 *>          RTOL2 is DOUBLE PRECISION  *>          RTOL2 is DOUBLE PRECISION
 *>           Parameters for bisection.  *>           Parameters for bisection.
 *>           An interval [LEFT,RIGHT] has converged if  *>           An interval [LEFT,RIGHT] has converged if
 *>           RIGHT-LEFT.LT.MAX( RTOL1*GAP, RTOL2*MAX(|LEFT|,|RIGHT|) )  *>           RIGHT-LEFT < MAX( RTOL1*GAP, RTOL2*MAX(|LEFT|,|RIGHT|) )
 *> \endverbatim  *> \endverbatim
 *>  *>
 *> \param[in] SPLTOL  *> \param[in] SPLTOL
Line 276 Line 276
 *> \author Univ. of Colorado Denver  *> \author Univ. of Colorado Denver
 *> \author NAG Ltd.  *> \author NAG Ltd.
 *  *
 *> \date June 2016  
 *  
 *> \ingroup OTHERauxiliary  *> \ingroup OTHERauxiliary
 *  *
 *> \par Further Details:  *> \par Further Details:
Line 305 Line 303
      $                    W, WERR, WGAP, IBLOCK, INDEXW, GERS, PIVMIN,       $                    W, WERR, WGAP, IBLOCK, INDEXW, GERS, PIVMIN,
      $                    WORK, IWORK, INFO )       $                    WORK, IWORK, INFO )
 *  *
 *  -- LAPACK auxiliary routine (version 3.7.0) --  *  -- LAPACK auxiliary 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..--
 *     June 2016  
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       CHARACTER          RANGE        CHARACTER          RANGE
Line 360 Line 357
 *     ..  *     ..
 *     .. External Subroutines ..  *     .. External Subroutines ..
       EXTERNAL           DCOPY, DLARNV, DLARRA, DLARRB, DLARRC, DLARRD,        EXTERNAL           DCOPY, DLARNV, DLARRA, DLARRB, DLARRC, DLARRD,
      $                   DLASQ2       $                   DLASQ2, DLARRK
 *     ..  *     ..
 *     .. Intrinsic Functions ..  *     .. Intrinsic Functions ..
       INTRINSIC          ABS, MAX, MIN        INTRINSIC          ABS, MAX, MIN
Line 370 Line 367
 *  *
   
       INFO = 0        INFO = 0
   *
   *     Quick return if possible
   *
         IF( N.LE.0 ) THEN
            RETURN
         END IF
 *  *
 *     Decode RANGE  *     Decode RANGE
 *  *
Line 894 Line 896
   
       RETURN        RETURN
 *  *
 *     end of DLARRE  *     End of DLARRE
 *  *
       END        END

Removed from v.1.19  
changed lines
  Added in v.1.24


CVSweb interface <joel.bertrand@systella.fr>