--- rpl/lapack/lapack/ilaver.f 2017/06/17 10:54:07 1.21 +++ rpl/lapack/lapack/ilaver.f 2020/05/21 21:46:03 1.25 @@ -25,19 +25,16 @@ * ========== * *> \param[out] VERS_MAJOR -*> \verbatim +*> VERS_MAJOR is INTEGER *> return the lapack major version -*> \endverbatim *> *> \param[out] VERS_MINOR -*> \verbatim +*> VERS_MINOR is INTEGER *> return the lapack minor version from the major version -*> \endverbatim *> *> \param[out] VERS_PATCH -*> \verbatim +*> VERS_PATCH is INTEGER *> return the lapack patch version from the minor version -*> \endverbatim * * Authors: * ======== @@ -47,24 +44,23 @@ *> \author Univ. of Colorado Denver *> \author NAG Ltd. * -*> \date December 2016 +*> \date November 2019 * -*> \ingroup OTHERauxiliary +*> \ingroup auxOTHERauxiliary * * ===================================================================== SUBROUTINE ILAVER( VERS_MAJOR, VERS_MINOR, VERS_PATCH ) * -* -- LAPACK computational routine (version 3.7.0) -- +* -- LAPACK computational routine -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- -* June 2016 * * ===================================================================== * INTEGER VERS_MAJOR, VERS_MINOR, VERS_PATCH * ===================================================================== VERS_MAJOR = 3 - VERS_MINOR = 7 + VERS_MINOR = 9 VERS_PATCH = 0 * ===================================================================== *