summaryrefslogtreecommitdiff
path: root/SRC/ilaver.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2011-11-07 20:15:25 +0000
committerjulie <julielangou@users.noreply.github.com>2011-11-07 20:15:25 +0000
commit56c08047036f23df08fcc9df5ead1a16d465a40d (patch)
tree0f5671cc6ffcd81c5bcb23228ddaaa7513a02fda /SRC/ilaver.f
parentd7db507e711e374bcb3edc4cef0d5915a2d77f26 (diff)
downloadlapack-56c08047036f23df08fcc9df5ead1a16d465a40d.tar.gz
lapack-56c08047036f23df08fcc9df5ead1a16d465a40d.tar.bz2
lapack-56c08047036f23df08fcc9df5ead1a16d465a40d.zip
Change to ilaver to update doc
Diffstat (limited to 'SRC/ilaver.f')
-rw-r--r--SRC/ilaver.f76
1 files changed, 47 insertions, 29 deletions
diff --git a/SRC/ilaver.f b/SRC/ilaver.f
index 02133340..8602043c 100644
--- a/SRC/ilaver.f
+++ b/SRC/ilaver.f
@@ -1,14 +1,29 @@
*> \brief \b ILAVER returns the LAPACK version.
-*> \details
-*> \b Purpose:
+**
+* =========== DOCUMENTATION ===========
+*
+* Online html documentation available at
+* http://www.netlib.org/lapack/explore-html/
+*
+* Definition:
+* ===========
+*
+* SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
+*
+* INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH
+*
+*
+*> \par Purpose:
+* =============
+*>
*> \verbatim
+*>
*> This subroutine returns the LAPACK version.
*> \endverbatim
-*>
-*> \author LAPACK is a software package provided by Univ. of Tennessee, Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..
-*> \date November 2011
-*> \ingroup auxOTHERcomputational
-*>
+*
+* Arguments:
+* ==========
+*
*> \param[out] VERS_MAJOR
*> return the lapack major version
*>
@@ -17,32 +32,35 @@
*>
*> \param[out] VERS_PATCH
*> return the lapack patch version from the minor version
-*>
+*
+* Authors:
+* ========
+*
+*> \author Univ. of Tennessee
+*> \author Univ. of California Berkeley
+*> \author Univ. of Colorado Denver
+*> \author NAG Ltd.
+*
+*> \date November 2011
+*
+*> \ingroup auxOTHERauxiliary
+*
+* =====================================================================
SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH )
-C
-C -- LAPACK computational routine (version 3.3.1) --
-C -- LAPACK is a software package provided by Univ. of Tennessee, --
-C -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
-C November 2011
-C
-C =====================================================================
-C
+*
+* -- LAPACK computational routine (version 3.3.1) --
+* -- LAPACK is a software package provided by Univ. of Tennessee, --
+* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
+* November 2011
+*
+* =====================================================================
+*
INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH
-C =====================================================================
+* =====================================================================
VERS_MAJOR = 3
VERS_MINOR = 3
VERS_PATCH = 1
-C =====================================================================
-C
+* =====================================================================
+*
RETURN
END
-*> \htmlonly
-*> Download ILAVER + dependencies
-*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ilaver.f">
-*> [TGZ]</a>
-*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/ilaver.f">
-*> [ZIP]</a>
-*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/ilaver.f">
-*> [TXT]</a>
-*> \endhtmlonly
-*