summaryrefslogtreecommitdiff
path: root/TESTING/LIN/ddrvac.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2011-10-06 06:53:11 +0000
committerjulie <julielangou@users.noreply.github.com>2011-10-06 06:53:11 +0000
commite1d39294aee16fa6db9ba079b14442358217db71 (patch)
tree30e5aa04c1f6596991fda5334f63dfb9b8027849 /TESTING/LIN/ddrvac.f
parent5fe0466a14e395641f4f8a300ecc9dcb8058081b (diff)
downloadlapack-e1d39294aee16fa6db9ba079b14442358217db71.tar.gz
lapack-e1d39294aee16fa6db9ba079b14442358217db71.tar.bz2
lapack-e1d39294aee16fa6db9ba079b14442358217db71.zip
Integrating Doxygen in comments
Diffstat (limited to 'TESTING/LIN/ddrvac.f')
-rw-r--r--TESTING/LIN/ddrvac.f203
1 files changed, 147 insertions, 56 deletions
diff --git a/TESTING/LIN/ddrvac.f b/TESTING/LIN/ddrvac.f
index 02eb36c9..952b84ff 100644
--- a/TESTING/LIN/ddrvac.f
+++ b/TESTING/LIN/ddrvac.f
@@ -1,10 +1,155 @@
+*> \brief \b DDRVAC
+*
+* =========== DOCUMENTATION ===========
+*
+* Online html documentation available at
+* http://www.netlib.org/lapack/explore-html/
+*
+* Definition
+* ==========
+*
+* SUBROUTINE DDRVAC( DOTYPE, NM, MVAL, NNS, NSVAL, THRESH, NMAX,
+* A, AFAC, B, X, WORK,
+* RWORK, SWORK, NOUT )
+*
+* .. Scalar Arguments ..
+* INTEGER NMAX, NM, NNS, NOUT
+* DOUBLE PRECISION THRESH
+* ..
+* .. Array Arguments ..
+* LOGICAL DOTYPE( * )
+* INTEGER MVAL( * ), NSVAL( * )
+* REAL SWORK(*)
+* DOUBLE PRECISION A( * ), AFAC( * ), B( * ),
+* $ RWORK( * ), WORK( * ), X( * )
+* ..
+*
+* Purpose
+* =======
+*
+*>\details \b Purpose:
+*>\verbatim
+*>
+*> DDRVAC tests DSPOSV.
+*>
+*>\endverbatim
+*
+* Arguments
+* =========
+*
+*> \param[in] DOTYPE
+*> \verbatim
+*> DOTYPE is LOGICAL array, dimension (NTYPES)
+*> The matrix types to be used for testing. Matrices of type j
+*> (for 1 <= j <= NTYPES) are used for testing if DOTYPE(j) =
+*> .TRUE.; if DOTYPE(j) = .FALSE., then type j is not used.
+*> \endverbatim
+*>
+*> \param[in] NM
+*> \verbatim
+*> NM is INTEGER
+*> The number of values of N contained in the vector MVAL.
+*> \endverbatim
+*>
+*> \param[in] MVAL
+*> \verbatim
+*> MVAL is INTEGER array, dimension (NM)
+*> The values of the matrix dimension N.
+*> \endverbatim
+*>
+*> \param[in] NNS
+*> \verbatim
+*> NNS is INTEGER
+*> The number of values of NRHS contained in the vector NSVAL.
+*> \endverbatim
+*>
+*> \param[in] NSVAL
+*> \verbatim
+*> NSVAL is INTEGER array, dimension (NNS)
+*> The values of the number of right hand sides NRHS.
+*> \endverbatim
+*>
+*> \param[in] THRESH
+*> \verbatim
+*> THRESH is DOUBLE PRECISION
+*> The threshold value for the test ratios. A result is
+*> included in the output file if RESULT >= THRESH. To have
+*> every test ratio printed, use THRESH = 0.
+*> \endverbatim
+*>
+*> \param[in] NMAX
+*> \verbatim
+*> NMAX is INTEGER
+*> The maximum value permitted for N, used in dimensioning the
+*> work arrays.
+*> \endverbatim
+*>
+*> \param[out] A
+*> \verbatim
+*> A is DOUBLE PRECISION array, dimension (NMAX*NMAX)
+*> \endverbatim
+*>
+*> \param[out] AFAC
+*> \verbatim
+*> AFAC is DOUBLE PRECISION array, dimension (NMAX*NMAX)
+*> \endverbatim
+*>
+*> \param[out] B
+*> \verbatim
+*> B is DOUBLE PRECISION array, dimension (NMAX*NSMAX)
+*> \endverbatim
+*>
+*> \param[out] X
+*> \verbatim
+*> X is DOUBLE PRECISION array, dimension (NMAX*NSMAX)
+*> \endverbatim
+*>
+*> \param[out] WORK
+*> \verbatim
+*> WORK is DOUBLE PRECISION array, dimension
+*> (NMAX*max(3,NSMAX))
+*> \endverbatim
+*>
+*> \param[out] RWORK
+*> \verbatim
+*> RWORK is DOUBLE PRECISION array, dimension
+*> (max(2*NMAX,2*NSMAX+NWORK))
+*> \endverbatim
+*>
+*> \param[out] SWORK
+*> \verbatim
+*> SWORK is REAL array, dimension
+*> (NMAX*(NSMAX+NMAX))
+*> \endverbatim
+*>
+*> \param[in] NOUT
+*> \verbatim
+*> NOUT is INTEGER
+*> The unit number for output.
+*> \endverbatim
+*>
+*
+* Authors
+* =======
+*
+*> \author Univ. of Tennessee
+*> \author Univ. of California Berkeley
+*> \author Univ. of Colorado Denver
+*> \author NAG Ltd.
+*
+*> \date November 2011
+*
+*> \ingroup double_lin
+*
+* =====================================================================
SUBROUTINE DDRVAC( DOTYPE, NM, MVAL, NNS, NSVAL, THRESH, NMAX,
$ A, AFAC, B, X, WORK,
$ RWORK, SWORK, NOUT )
*
* -- LAPACK test routine (version 3.1.2) --
-* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
-* April 2007
+* -- LAPACK is a software package provided by Univ. of Tennessee, --
+* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
+* November 2011
*
* .. Scalar Arguments ..
INTEGER NMAX, NM, NNS, NOUT
@@ -18,60 +163,6 @@
$ RWORK( * ), WORK( * ), X( * )
* ..
*
-* Purpose
-* =======
-*
-* DDRVAC tests DSPOSV.
-*
-* Arguments
-* =========
-*
-* DOTYPE (input) LOGICAL array, dimension (NTYPES)
-* The matrix types to be used for testing. Matrices of type j
-* (for 1 <= j <= NTYPES) are used for testing if DOTYPE(j) =
-* .TRUE.; if DOTYPE(j) = .FALSE., then type j is not used.
-*
-* NM (input) INTEGER
-* The number of values of N contained in the vector MVAL.
-*
-* MVAL (input) INTEGER array, dimension (NM)
-* The values of the matrix dimension N.
-*
-* NNS (input) INTEGER
-* The number of values of NRHS contained in the vector NSVAL.
-*
-* NSVAL (input) INTEGER array, dimension (NNS)
-* The values of the number of right hand sides NRHS.
-*
-* THRESH (input) DOUBLE PRECISION
-* The threshold value for the test ratios. A result is
-* included in the output file if RESULT >= THRESH. To have
-* every test ratio printed, use THRESH = 0.
-*
-* NMAX (input) INTEGER
-* The maximum value permitted for N, used in dimensioning the
-* work arrays.
-*
-* A (workspace) DOUBLE PRECISION array, dimension (NMAX*NMAX)
-*
-* AFAC (workspace) DOUBLE PRECISION array, dimension (NMAX*NMAX)
-*
-* B (workspace) DOUBLE PRECISION array, dimension (NMAX*NSMAX)
-*
-* X (workspace) DOUBLE PRECISION array, dimension (NMAX*NSMAX)
-*
-* WORK (workspace) DOUBLE PRECISION array, dimension
-* (NMAX*max(3,NSMAX))
-*
-* RWORK (workspace) DOUBLE PRECISION array, dimension
-* (max(2*NMAX,2*NSMAX+NWORK))
-*
-* SWORK (workspace) REAL array, dimension
-* (NMAX*(NSMAX+NMAX))
-*
-* NOUT (input) INTEGER
-* The unit number for output.
-*
* =====================================================================
*
* .. Parameters ..