LAPACK  3.4.2
LAPACK: Linear Algebra PACKage
 All Files Functions Groups
LAPACK_version.f
Go to the documentation of this file.
1 *> \brief \b 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 * PROGRAM LAPACK_VERSION
12 *
13 * Authors:
14 * ========
15 *
16 *> \author Univ. of Tennessee
17 *> \author Univ. of California Berkeley
18 *> \author Univ. of Colorado Denver
19 *> \author NAG Ltd.
20 *
21 *> \date November 2011
22 *
23 *> \ingroup auxOTHERauxiliary
24 *
25 * ===================================================================== PROGRAM LAPACK_VERSION
26 *
27 * -- LAPACK auxiliary routine (version 3.4.0) --
28 * -- LAPACK is a software package provided by Univ. of Tennessee, --
29 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
30 * November 2011
31 *
32  INTEGER major, minor, patch
33 *
34  CALL ilaver( major,minor, patch )
35  WRITE(*,*) "LAPACK ",major,".",minor,".",patch
36 *
37  END