Diff for /rpl/lapack/lapack/dlasq4.f between versions 1.8 and 1.9

version 1.8, 2011/07/22 07:38:08 version 1.9, 2011/11/21 20:42:59
Line 1 Line 1
       SUBROUTINE DLASQ4( I0, N0, Z, PP, N0IN, DMIN, DMIN1, DMIN2, DN,  *> \brief \b DLASQ4
      $                   DN1, DN2, TAU, TTYPE, G )  *
   *  =========== DOCUMENTATION ===========
 *  *
 *  -- LAPACK routine (version 3.3.1)                                    --  * Online html documentation available at 
   *            http://www.netlib.org/lapack/explore-html/ 
 *  *
 *  -- Contributed by Osni Marques of the Lawrence Berkeley National   --  *> \htmlonly
 *  -- Laboratory and Beresford Parlett of the Univ. of California at  --  *> Download DLASQ4 + dependencies 
 *  -- Berkeley                                                        --  *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dlasq4.f"> 
 *  -- November 2008                                                   --  *> [TGZ]</a> 
   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dlasq4.f"> 
   *> [ZIP]</a> 
   *> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dlasq4.f"> 
   *> [TXT]</a>
   *> \endhtmlonly 
   *
   *  Definition:
   *  ===========
   *
   *       SUBROUTINE DLASQ4( I0, N0, Z, PP, N0IN, DMIN, DMIN1, DMIN2, DN,
   *                          DN1, DN2, TAU, TTYPE, G )
   * 
   *       .. Scalar Arguments ..
   *       INTEGER            I0, N0, N0IN, PP, TTYPE
   *       DOUBLE PRECISION   DMIN, DMIN1, DMIN2, DN, DN1, DN2, G, TAU
   *       ..
   *       .. Array Arguments ..
   *       DOUBLE PRECISION   Z( * )
   *       ..
   *  
   *
   *> \par Purpose:
   *  =============
   *>
   *> \verbatim
   *>
   *> DLASQ4 computes an approximation TAU to the smallest eigenvalue
   *> using values of d from the previous transform.
   *> \endverbatim
   *
   *  Arguments:
   *  ==========
   *
   *> \param[in] I0
   *> \verbatim
   *>          I0 is INTEGER
   *>        First index.
   *> \endverbatim
   *>
   *> \param[in] N0
   *> \verbatim
   *>          N0 is INTEGER
   *>        Last index.
   *> \endverbatim
   *>
   *> \param[in] Z
   *> \verbatim
   *>          Z is DOUBLE PRECISION array, dimension ( 4*N )
   *>        Z holds the qd array.
   *> \endverbatim
   *>
   *> \param[in] PP
   *> \verbatim
   *>          PP is INTEGER
   *>        PP=0 for ping, PP=1 for pong.
   *> \endverbatim
   *>
   *> \param[in] N0IN
   *> \verbatim
   *>          N0IN is INTEGER
   *>        The value of N0 at start of EIGTEST.
   *> \endverbatim
   *>
   *> \param[in] DMIN
   *> \verbatim
   *>          DMIN is DOUBLE PRECISION
   *>        Minimum value of d.
   *> \endverbatim
   *>
   *> \param[in] DMIN1
   *> \verbatim
   *>          DMIN1 is DOUBLE PRECISION
   *>        Minimum value of d, excluding D( N0 ).
   *> \endverbatim
   *>
   *> \param[in] DMIN2
   *> \verbatim
   *>          DMIN2 is DOUBLE PRECISION
   *>        Minimum value of d, excluding D( N0 ) and D( N0-1 ).
   *> \endverbatim
   *>
   *> \param[in] DN
   *> \verbatim
   *>          DN is DOUBLE PRECISION
   *>        d(N)
   *> \endverbatim
   *>
   *> \param[in] DN1
   *> \verbatim
   *>          DN1 is DOUBLE PRECISION
   *>        d(N-1)
   *> \endverbatim
   *>
   *> \param[in] DN2
   *> \verbatim
   *>          DN2 is DOUBLE PRECISION
   *>        d(N-2)
   *> \endverbatim
   *>
   *> \param[out] TAU
   *> \verbatim
   *>          TAU is DOUBLE PRECISION
   *>        This is the shift.
   *> \endverbatim
   *>
   *> \param[out] TTYPE
   *> \verbatim
   *>          TTYPE is INTEGER
   *>        Shift type.
   *> \endverbatim
   *>
   *> \param[in,out] G
   *> \verbatim
   *>          G is REAL
   *>        G is passed as an argument in order to save its value between
   *>        calls to DLASQ4.
   *> \endverbatim
   *
   *  Authors:
   *  ========
   *
   *> \author Univ. of Tennessee 
   *> \author Univ. of California Berkeley 
   *> \author Univ. of Colorado Denver 
   *> \author NAG Ltd. 
   *
   *> \date November 2011
   *
   *> \ingroup auxOTHERcomputational
   *
   *> \par Further Details:
   *  =====================
   *>
   *> \verbatim
   *>
   *>  CNST1 = 9/16
   *> \endverbatim
   *>
   *  =====================================================================
         SUBROUTINE DLASQ4( I0, N0, Z, PP, N0IN, DMIN, DMIN1, DMIN2, DN,
        $                   DN1, DN2, TAU, TTYPE, G )
 *  *
   *  -- LAPACK computational routine (version 3.4.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..--
   *     November 2011
 *  *
 *     .. Scalar Arguments ..  *     .. Scalar Arguments ..
       INTEGER            I0, N0, N0IN, PP, TTYPE        INTEGER            I0, N0, N0IN, PP, TTYPE
Line 19 Line 164
       DOUBLE PRECISION   Z( * )        DOUBLE PRECISION   Z( * )
 *     ..  *     ..
 *  *
 *  Purpose  
 *  =======  
 *  
 *  DLASQ4 computes an approximation TAU to the smallest eigenvalue  
 *  using values of d from the previous transform.  
 *  
 *  Arguments  
 *  =========  
 *  
 *  I0    (input) INTEGER  
 *        First index.  
 *  
 *  N0    (input) INTEGER  
 *        Last index.  
 *  
 *  Z     (input) DOUBLE PRECISION array, dimension ( 4*N )  
 *        Z holds the qd array.  
 *  
 *  PP    (input) INTEGER  
 *        PP=0 for ping, PP=1 for pong.  
 *  
 *  NOIN  (input) INTEGER  
 *        The value of N0 at start of EIGTEST.  
 *  
 *  DMIN  (input) DOUBLE PRECISION  
 *        Minimum value of d.  
 *  
 *  DMIN1 (input) DOUBLE PRECISION  
 *        Minimum value of d, excluding D( N0 ).  
 *  
 *  DMIN2 (input) DOUBLE PRECISION  
 *        Minimum value of d, excluding D( N0 ) and D( N0-1 ).  
 *  
 *  DN    (input) DOUBLE PRECISION  
 *        d(N)  
 *  
 *  DN1   (input) DOUBLE PRECISION  
 *        d(N-1)  
 *  
 *  DN2   (input) DOUBLE PRECISION  
 *        d(N-2)  
 *  
 *  TAU   (output) DOUBLE PRECISION  
 *        This is the shift.  
 *  
 *  TTYPE (output) INTEGER  
 *        Shift type.  
 *  
 *  G     (input/output) REAL  
 *        G is passed as an argument in order to save its value between  
 *        calls to DLASQ4.  
 *  
 *  Further Details  
 *  ===============  
 *  CNST1 = 9/16  
 *  
 *  =====================================================================  *  =====================================================================
 *  *
 *     .. Parameters ..  *     .. Parameters ..

Removed from v.1.8  
changed lines
  Added in v.1.9


CVSweb interface <joel.bertrand@systella.fr>