summaryrefslogtreecommitdiff
path: root/SRC/ssyconv.f
diff options
context:
space:
mode:
authorlangou <langou@users.noreply.github.com>2015-11-04 19:54:31 +0000
committerlangou <langou@users.noreply.github.com>2015-11-04 19:54:31 +0000
commiteedd28ee8d97e407f4b551e92dce4b193bfa674a (patch)
treee774385f027544c871a65c957b6dfd929421fd57 /SRC/ssyconv.f
parent54547abdff9232c9d7cf1744a6e3b8f26be94543 (diff)
downloadlapack-eedd28ee8d97e407f4b551e92dce4b193bfa674a.tar.gz
lapack-eedd28ee8d97e407f4b551e92dce4b193bfa674a.tar.bz2
lapack-eedd28ee8d97e407f4b551e92dce4b193bfa674a.zip
Thanks to Lawrence Mulholland (NAG) for reporting the problem. While the array
E should really be of size N-1, xSYCONV() is not ready for this and so, in the comment at the header level, we now require E to be of size N. Also xSYTRS2() is using E(N) = ZERO, so if we make E of size N-1 in xSYCONV(), then we need to see the impact on xSYTRS2(). This is long term cleaning, so for now, we revert back to requesting an array E of size N. Thanks Lawrence for noticing this.
Diffstat (limited to 'SRC/ssyconv.f')
-rw-r--r--SRC/ssyconv.f2
1 files changed, 1 insertions, 1 deletions
diff --git a/SRC/ssyconv.f b/SRC/ssyconv.f
index b636037a..f7384ed1 100644
--- a/SRC/ssyconv.f
+++ b/SRC/ssyconv.f
@@ -87,7 +87,7 @@
*>
*> \param[out] E
*> \verbatim
-*> E is REAL array, dimension (N-1)
+*> E is REAL array, dimension (N)
*> E stores the supdiagonal/subdiagonal of the symmetric 1-by-1
*> or 2-by-2 block diagonal matrix D in LDLT.
*> \endverbatim