From a681d8fc7a25c6fc3c90ce0fff72dfd60c23e0f8 Mon Sep 17 00:00:00 2001 From: julie Date: Thu, 9 Jan 2014 20:34:39 +0000 Subject: [PATCH] Problem reported by zhaowei@sccas.cn on Jan 9th 2014 Corrected comments to list Z as input/output > Email i just found a mistake in the comments of 'dlasq3.c' while reading the code: /* Z (input) DOUBLE PRECISION array, dimension ( 4*N ) */ /* Z holds the qd array. */ but Z can be changed in that subroutine...i just think '(output)' should be added to avoid misleading user... --- SRC/dlasq3.f | 2 +- SRC/slasq3.f | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SRC/dlasq3.f b/SRC/dlasq3.f index d49d1c59..412c8ca8 100644 --- a/SRC/dlasq3.f +++ b/SRC/dlasq3.f @@ -58,7 +58,7 @@ *> Last index. *> \endverbatim *> -*> \param[in] Z +*> \param[in,out] Z *> \verbatim *> Z is DOUBLE PRECISION array, dimension ( 4*N ) *> Z holds the qd array. diff --git a/SRC/slasq3.f b/SRC/slasq3.f index 64badbb1..c7e7fdcd 100644 --- a/SRC/slasq3.f +++ b/SRC/slasq3.f @@ -58,7 +58,7 @@ *> Last index. *> \endverbatim *> -*> \param[in] Z +*> \param[in,out] Z *> \verbatim *> Z is REAL array, dimension ( 4*N ) *> Z holds the qd array. -- 2.34.1