diff options
author | julie <julielangou@users.noreply.github.com> | 2012-08-10 17:32:23 +0000 |
---|---|---|
committer | julie <julielangou@users.noreply.github.com> | 2012-08-10 17:32:23 +0000 |
commit | f19e60eae7501b29b32121b21313585dfe46cf3b (patch) | |
tree | 9935b3b772c97bf7538a0a9d7b28cfdb6cb86a6a /SRC/zptsvx.f | |
parent | eca2d3e81e78f3decb20f86a9462ef9a3f49d7c3 (diff) | |
download | lapack-f19e60eae7501b29b32121b21313585dfe46cf3b.tar.gz lapack-f19e60eae7501b29b32121b21313585dfe46cf3b.tar.bz2 lapack-f19e60eae7501b29b32121b21313585dfe46cf3b.zip |
Correct comments and Doxygen generation following comments from Sa-Lin Cheng Bernstein sent to lapack mailing list on August 9th 2012
While looking at the new lapack version (v3.4.1) and going through the routines on http://www.netlib.org/lapack/lapack_routine/, we found some errors and thought that we should report them. Below is the list of the errors.
====================================================================
(1) Should be "\ingroup complex16OTHERsolve" and not "\ingroup complex16OTHERcomputational" because they are driver routines; in addition, in the line just below SUBROUTINE <routinename>, it should be driver routine:
sgtsv.f
sgtsvx.f
sptsv.f
sptsvx.f
dgtsv.f
dgtsvx.f
dptsv.f
dptsvx.f
cgtsv.f
cgtsvx.f
cptsv.f
cptsvx.f
zgtsv.f
zgtsvx.f
zptsv.f
zptsvx.f
(2) Should be "\ingroup complex16SYsolve" and not "\ingroup complex16OTHERcomputational" because they are driver routines; in addition, in the line just below SUBROUTINE <routinename>, it should be driver routine:
ssysvxx.f
dsysvxx.f
(3) Should be "\ingroup realOTHERcomputational" and not ""\ingroup auxOTHERcomputational":
spttrf.f
(4) Should be "\ingroup doubleOTHERcomputational" and not ""\ingroup auxOTHERcomputational":
dpttrf.f
(5) Should be "symmetric matrix" and not "Hermitian indefinite matrix" in "\par Purpose:"
ssytri2.f
dsytri2.f
csytri2.f
zsytri2.f
(6) Should be "\ingroup realGEsing" and not "\ingroup realGEcomputational":
sgejsv.f
dgejsv.f
Diffstat (limited to 'SRC/zptsvx.f')
-rw-r--r-- | SRC/zptsvx.f | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/SRC/zptsvx.f b/SRC/zptsvx.f index 3f376fa5..7c9ee91a 100644 --- a/SRC/zptsvx.f +++ b/SRC/zptsvx.f @@ -1,4 +1,4 @@ -*> \brief \b ZPTSVX +*> \brief <b> ZPTSVX computes the solution to system of linear equations A * X = B for PT matrices</b> * * =========== DOCUMENTATION =========== * @@ -228,13 +228,13 @@ * *> \date April 2012 * -*> \ingroup complex16OTHERcomputational +*> \ingroup complex16PTsolve * * ===================================================================== SUBROUTINE ZPTSVX( FACT, N, NRHS, D, E, DF, EF, B, LDB, X, LDX, $ RCOND, FERR, BERR, WORK, RWORK, INFO ) * -* -- LAPACK computational routine (version 3.4.1) -- +* -- LAPACK driver routine (version 3.4.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- * April 2012 |