Diff for /rpl/lapack/lapack/dlarrj.f between versions 1.17 and 1.21

version 1.17, 2017/06/17 11:06:25 version 1.21, 2023/08/07 08:38:57
Line 85 Line 85
 *>          RTOL is DOUBLE PRECISION  *>          RTOL is DOUBLE PRECISION
 *>          Tolerance for the convergence of the bisection intervals.  *>          Tolerance for the convergence of the bisection intervals.
 *>          An interval [LEFT,RIGHT] has converged if  *>          An interval [LEFT,RIGHT] has converged if
 *>          RIGHT-LEFT.LT.RTOL*MAX(|LEFT|,|RIGHT|).  *>          RIGHT-LEFT < RTOL*MAX(|LEFT|,|RIGHT|).
 *> \endverbatim  *> \endverbatim
 *>  *>
 *> \param[in] OFFSET  *> \param[in] OFFSET
Line 150 Line 150
 *> \author Univ. of Colorado Denver  *> \author Univ. of Colorado Denver
 *> \author NAG Ltd.  *> \author NAG Ltd.
 *  *
 *> \date December 2016  
 *  
 *> \ingroup OTHERauxiliary  *> \ingroup OTHERauxiliary
 *  *
 *> \par Contributors:  *> \par Contributors:
Line 168 Line 166
      $                   RTOL, OFFSET, W, WERR, WORK, IWORK,       $                   RTOL, OFFSET, W, WERR, WORK, IWORK,
      $                   PIVMIN, SPDIAM, INFO )       $                   PIVMIN, SPDIAM, 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..--
 *     December 2016  
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       INTEGER            IFIRST, ILAST, INFO, N, OFFSET        INTEGER            IFIRST, ILAST, INFO, N, OFFSET
Line 204 Line 201
 *  *
       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
 *  *

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


CVSweb interface <joel.bertrand@systella.fr>