You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
919 B
38 lines
919 B
*> \brief \b LAPACK_VERSION
|
|
*
|
|
* =========== DOCUMENTATION ===========
|
|
*
|
|
* Online html documentation available at
|
|
* http://www.netlib.org/lapack/explore-html/
|
|
*
|
|
* Definition:
|
|
* ===========
|
|
*
|
|
* PROGRAM LAPACK_VERSION
|
|
*
|
|
* Authors:
|
|
* ========
|
|
*
|
|
*> \author Univ. of Tennessee
|
|
*> \author Univ. of California Berkeley
|
|
*> \author Univ. of Colorado Denver
|
|
*> \author NAG Ltd.
|
|
*
|
|
*> \ingroup auxOTHERauxiliary
|
|
*
|
|
* =====================================================================
|
|
PROGRAM LAPACK_VERSION
|
|
*
|
|
* -- LAPACK auxiliary routine --
|
|
* -- LAPACK is a software package provided by Univ. of Tennessee, --
|
|
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
|
|
*
|
|
INTEGER MAJOR, MINOR, PATCH
|
|
* ..
|
|
* .. External Subroutines ..
|
|
EXTERNAL ILAVER
|
|
*
|
|
CALL ILAVER ( MAJOR, MINOR, PATCH )
|
|
WRITE(*,*) "LAPACK ",MAJOR,".",MINOR,".",PATCH
|
|
*
|
|
END
|
|
|