Diff for /rpl/lapack/lapack/ilaver.f between versions 1.7 and 1.22

version 1.7, 2010/08/13 21:04:01 version 1.22, 2017/06/17 11:06:39
Line 1 Line 1
       SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )  *> \brief \b ILAVER returns the LAPACK version.
 *       **
 *  -- LAPACK routine (version 3.2.2)                                  --  *  =========== DOCUMENTATION ===========
   *
   * Online html documentation available at
   *            http://www.netlib.org/lapack/explore-html/
   *
   *  Definition:
   *  ===========
   *
   *     SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
   *
   *     INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH
   *
   *
   *> \par Purpose:
   *  =============
   *>
   *> \verbatim
   *>
   *>  This subroutine returns the LAPACK version.
   *> \endverbatim
   *
   *  Arguments:
   *  ==========
   *
   *>  \param[out] VERS_MAJOR
   *>  \verbatim
   *>      return the lapack major version
   *>  \endverbatim
   *>
   *>  \param[out] VERS_MINOR
   *>  \verbatim
   *>      return the lapack minor version from the major version
   *>  \endverbatim
   *>
   *>  \param[out] VERS_PATCH
   *>  \verbatim
   *>      return the lapack patch version from the minor version
   *>  \endverbatim
   *
   *  Authors:
   *  ========
   *
   *> \author Univ. of Tennessee
   *> \author Univ. of California Berkeley
   *> \author Univ. of Colorado Denver
   *> \author NAG Ltd.
 *  *
 *  -- June 2010                                                       --  *> \date December 2016
 *  *
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --  *> \ingroup OTHERauxiliary
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--  
 *     ..  
 *  *
 *  Purpose  *  =====================================================================
 *  =======        SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
 *  *
 *  This subroutine return the Lapack version.  *  -- LAPACK computational routine (version 3.7.0) --
   *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
   *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
   *     June 2016
 *  *
 *  Arguments  
 *  =========  
 *  VERS_MAJOR   (output) INTEGER  
 *      return the lapack major version  
 *  VERS_MINOR   (output) INTEGER  
 *      return the lapack minor version from the major version  
 *  VERS_PATCH   (output) INTEGER  
 *      return the lapack patch version from the minor version  
 *  =====================================================================  *  =====================================================================
 *  *
       INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH        INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH
 *  =====================================================================  *  =====================================================================
       VERS_MAJOR = 3        VERS_MAJOR = 3
       VERS_MINOR = 2        VERS_MINOR = 7
       VERS_PATCH = 2        VERS_PATCH = 0
 *  =====================================================================  *  =====================================================================
 *  *
       RETURN        RETURN

Removed from v.1.7  
changed lines
  Added in v.1.22


CVSweb interface <joel.bertrand@systella.fr>