removed lapack 3.6.0

This commit is contained in:
Werner Saar
2017-01-06 11:44:57 +01:00
parent 8f9975e013
commit 8cd46acebb
5835 changed files with 0 additions and 1612856 deletions

View File

@@ -1,37 +0,0 @@
*> \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.
*
*> \date November 2011
*
*> \ingroup auxOTHERauxiliary
*
* ===================================================================== PROGRAM LAPACK_VERSION
*
* -- LAPACK auxiliary routine (version 3.4.0) --
* -- LAPACK is a software package provided by Univ. of Tennessee, --
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
* November 2011
*
INTEGER MAJOR, MINOR, PATCH
*
CALL ILAVER ( MAJOR,MINOR, PATCH )
WRITE(*,*) "LAPACK ",MAJOR,".",MINOR,".",PATCH
*
END