LAPACK  3.4.2
LAPACK: Linear Algebra PACKage
 All Files Functions Groups
ilaver.f
Go to the documentation of this file.
1 *> \brief \b ILAVER returns the LAPACK version.
2 **
3 * =========== DOCUMENTATION ===========
4 *
5 * Online html documentation available at
6 * http://www.netlib.org/lapack/explore-html/
7 *
8 * Definition:
9 * ===========
10 *
11 * SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
12 *
13 * INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH
14 *
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 *
39 *> \author Univ. of Tennessee
40 *> \author Univ. of California Berkeley
41 *> \author Univ. of Colorado Denver
42 *> \author NAG Ltd.
43 *
44 *> \date September 2012
45 *
46 *> \ingroup auxOTHERauxiliary
47 *
48 * =====================================================================
49  SUBROUTINE ilaver( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
50 *
51 * -- LAPACK computational routine (version 3.4.2) --
52 * -- LAPACK is a software package provided by Univ. of Tennessee, --
53 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
54 * September 2012
55 *
56 * =====================================================================
57 *
58  INTEGER vers_major, vers_minor, vers_patch
59 * =====================================================================
60  vers_major = 3
61  vers_minor = 4
62  vers_patch = 2
63 * =====================================================================
64 *
65  return
66  END