Annotation of rpl/lapack/lapack/ilaver.f, revision 1.24

1.11      bertrand    1: *> \brief \b ILAVER returns the LAPACK version.
                      2: **
                      3: *  =========== DOCUMENTATION ===========
                      4: *
1.21      bertrand    5: * Online html documentation available at
                      6: *            http://www.netlib.org/lapack/explore-html/
1.11      bertrand    7: *
                      8: *  Definition:
                      9: *  ===========
                     10: *
                     11: *     SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
                     12: *
                     13: *     INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH
1.21      bertrand   14: *
1.11      bertrand   15: *
                     16: *> \par Purpose:
                     17: *  =============
                     18: *>
                     19: *> \verbatim
                     20: *>
                     21: *>  This subroutine returns the LAPACK version.
                     22: *> \endverbatim
                     23: *
                     24: *  Arguments:
                     25: *  ==========
                     26: *
                     27: *>  \param[out] VERS_MAJOR
                     28: *>      return the lapack major version
                     29: *>
                     30: *>  \param[out] VERS_MINOR
                     31: *>      return the lapack minor version from the major version
                     32: *>
                     33: *>  \param[out] VERS_PATCH
                     34: *>      return the lapack patch version from the minor version
                     35: *
                     36: *  Authors:
                     37: *  ========
                     38: *
1.21      bertrand   39: *> \author Univ. of Tennessee
                     40: *> \author Univ. of California Berkeley
                     41: *> \author Univ. of Colorado Denver
                     42: *> \author NAG Ltd.
1.11      bertrand   43: *
1.23      bertrand   44: *> \date June 2017
1.11      bertrand   45: *
1.23      bertrand   46: *> \ingroup auxOTHERauxiliary
1.11      bertrand   47: *
                     48: *  =====================================================================
1.1       bertrand   49:       SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
                     50: *
1.23      bertrand   51: *  -- LAPACK computational routine (version 3.7.1) --
1.1       bertrand   52: *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
                     53: *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
1.23      bertrand   54: *     June 2017
1.1       bertrand   55: *
                     56: *  =====================================================================
                     57: *
                     58:       INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH
                     59: *  =====================================================================
                     60:       VERS_MAJOR = 3
1.23      bertrand   61:       VERS_MINOR = 8
1.17      bertrand   62:       VERS_PATCH = 0
1.1       bertrand   63: *  =====================================================================
                     64: *
                     65:       RETURN
                     66:       END

CVSweb interface <joel.bertrand@systella.fr>