Skip to content

Commit 66d041d

Browse files
authored
Merge pull request #5863 from martin-frbg/lapack1307
Change description of QMAX in ?LASQ3 to in/out (Reference-LAPACK PR 1307)
2 parents dd3ba97 + 5cc9ff4 commit 66d041d

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

lapack-netlib/SRC/dlasq3.f

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,13 @@
55
* Online html documentation available at
66
* http://www.netlib.org/lapack/explore-html/
77
*
8-
*> \htmlonly
98
*> Download DLASQ3 + dependencies
109
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/dlasq3.f">
1110
*> [TGZ]</a>
1211
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/dlasq3.f">
1312
*> [ZIP]</a>
1413
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/dlasq3.f">
1514
*> [TXT]</a>
16-
*> \endhtmlonly
1715
*
1816
* Definition:
1917
* ===========
@@ -91,7 +89,7 @@
9189
*> Lower order part of SIGMA
9290
*> \endverbatim
9391
*>
94-
*> \param[in] QMAX
92+
*> \param[in,out] QMAX
9593
*> \verbatim
9694
*> QMAX is DOUBLE PRECISION
9795
*> Maximum value of q.
@@ -173,12 +171,14 @@
173171
*> \author Univ. of Colorado Denver
174172
*> \author NAG Ltd.
175173
*
176-
*> \ingroup auxOTHERcomputational
174+
*> \ingroup lasq3
177175
*
178176
* =====================================================================
179-
SUBROUTINE DLASQ3( I0, N0, Z, PP, DMIN, SIGMA, DESIG, QMAX, NFAIL,
177+
SUBROUTINE DLASQ3( I0, N0, Z, PP, DMIN, SIGMA, DESIG, QMAX,
178+
$ NFAIL,
180179
$ ITER, NDIV, IEEE, TTYPE, DMIN1, DMIN2, DN, DN1,
181180
$ DN2, G, TAU )
181+
IMPLICIT NONE
182182
*
183183
* -- LAPACK computational routine --
184184
* -- LAPACK is a software package provided by Univ. of Tennessee, --

lapack-netlib/SRC/slasq3.f

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,13 @@
55
* Online html documentation available at
66
* http://www.netlib.org/lapack/explore-html/
77
*
8-
*> \htmlonly
98
*> Download SLASQ3 + dependencies
109
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/slasq3.f">
1110
*> [TGZ]</a>
1211
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/slasq3.f">
1312
*> [ZIP]</a>
1413
*> <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/slasq3.f">
1514
*> [TXT]</a>
16-
*> \endhtmlonly
1715
*
1816
* Definition:
1917
* ===========
@@ -91,7 +89,7 @@
9189
*> Lower order part of SIGMA
9290
*> \endverbatim
9391
*>
94-
*> \param[in] QMAX
92+
*> \param[in,out] QMAX
9593
*> \verbatim
9694
*> QMAX is REAL
9795
*> Maximum value of q.
@@ -173,12 +171,14 @@
173171
*> \author Univ. of Colorado Denver
174172
*> \author NAG Ltd.
175173
*
176-
*> \ingroup auxOTHERcomputational
174+
*> \ingroup lasq3
177175
*
178176
* =====================================================================
179-
SUBROUTINE SLASQ3( I0, N0, Z, PP, DMIN, SIGMA, DESIG, QMAX, NFAIL,
177+
SUBROUTINE SLASQ3( I0, N0, Z, PP, DMIN, SIGMA, DESIG, QMAX,
178+
$ NFAIL,
180179
$ ITER, NDIV, IEEE, TTYPE, DMIN1, DMIN2, DN, DN1,
181180
$ DN2, G, TAU )
181+
IMPLICIT NONE
182182
*
183183
* -- LAPACK computational routine --
184184
* -- LAPACK is a software package provided by Univ. of Tennessee, --

0 commit comments

Comments
 (0)