summaryrefslogtreecommitdiff
path: root/TESTING/EIG/ddrvst.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2011-11-01 22:02:31 +0000
committerjulie <julielangou@users.noreply.github.com>2011-11-01 22:02:31 +0000
commitd5c30c90bdecf38da1064e2ed52583634573e741 (patch)
tree480fc5ff31ee14b83116b6428aad79ea6e89362d /TESTING/EIG/ddrvst.f
parent04670a68760fa27333f8bcef8172f71adc6880ef (diff)
downloadlapack-d5c30c90bdecf38da1064e2ed52583634573e741.tar.gz
lapack-d5c30c90bdecf38da1064e2ed52583634573e741.tar.bz2
lapack-d5c30c90bdecf38da1064e2ed52583634573e741.zip
Never say never...
Diffstat (limited to 'TESTING/EIG/ddrvst.f')
-rw-r--r--TESTING/EIG/ddrvst.f102
1 files changed, 34 insertions, 68 deletions
diff --git a/TESTING/EIG/ddrvst.f b/TESTING/EIG/ddrvst.f
index 623ea3d8..e1319caf 100644
--- a/TESTING/EIG/ddrvst.f
+++ b/TESTING/EIG/ddrvst.f
@@ -151,15 +151,13 @@
*> The number of sizes of matrices to use. If it is zero,
*> DDRVST does nothing. It must be at least zero.
*> Not modified.
-*> \endverbatim
-*> \verbatim
+*>
*> NN INTEGER array, dimension (NSIZES)
*> An array containing the sizes to be used for the matrices.
*> Zero values will be skipped. The values must be at least
*> zero.
*> Not modified.
-*> \endverbatim
-*> \verbatim
+*>
*> NTYPES INTEGER
*> The number of elements in DOTYPE. If it is zero, DDRVST
*> does nothing. It must be at least zero. If it is MAXTYP+1
@@ -168,8 +166,7 @@
*> is only useful if DOTYPE(1:MAXTYP) is .FALSE. and
*> DOTYPE(MAXTYP+1) is .TRUE. .
*> Not modified.
-*> \endverbatim
-*> \verbatim
+*>
*> DOTYPE LOGICAL array, dimension (NTYPES)
*> If DOTYPE(j) is .TRUE., then for each size in NN a
*> matrix of that size and of type j will be generated.
@@ -179,8 +176,7 @@
*> than MAXTYP, DOTYPE(MAXTYP+1) through DOTYPE(NTYPES)
*> will be ignored.
*> Not modified.
-*> \endverbatim
-*> \verbatim
+*>
*> ISEED INTEGER array, dimension (4)
*> On entry ISEED specifies the seed of the random number
*> generator. The array elements should be between 0 and 4095;
@@ -192,8 +188,7 @@
*> next call to DDRVST to continue the same random number
*> sequence.
*> Modified.
-*> \endverbatim
-*> \verbatim
+*>
*> THRESH DOUBLE PRECISION
*> A test will count as "failed" if the "error", computed as
*> described above, exceeds THRESH. Note that the error
@@ -202,120 +197,99 @@
*> it should not depend on the precision (single vs. double)
*> or the size of the matrix. It must be at least zero.
*> Not modified.
-*> \endverbatim
-*> \verbatim
+*>
*> NOUNIT INTEGER
*> The FORTRAN unit number for printing out error messages
*> (e.g., if a routine returns IINFO not equal to 0.)
*> Not modified.
-*> \endverbatim
-*> \verbatim
+*>
*> A DOUBLE PRECISION array, dimension (LDA , max(NN))
*> Used to hold the matrix whose eigenvalues are to be
*> computed. On exit, A contains the last matrix actually
*> used.
*> Modified.
-*> \endverbatim
-*> \verbatim
+*>
*> LDA INTEGER
*> The leading dimension of A. It must be at
*> least 1 and at least max( NN ).
*> Not modified.
-*> \endverbatim
-*> \verbatim
+*>
*> D1 DOUBLE PRECISION array, dimension (max(NN))
*> The eigenvalues of A, as computed by DSTEQR simlutaneously
*> with Z. On exit, the eigenvalues in D1 correspond with the
*> matrix in A.
*> Modified.
-*> \endverbatim
-*> \verbatim
+*>
*> D2 DOUBLE PRECISION array, dimension (max(NN))
*> The eigenvalues of A, as computed by DSTEQR if Z is not
*> computed. On exit, the eigenvalues in D2 correspond with
*> the matrix in A.
*> Modified.
-*> \endverbatim
-*> \verbatim
+*>
*> D3 DOUBLE PRECISION array, dimension (max(NN))
*> The eigenvalues of A, as computed by DSTERF. On exit, the
*> eigenvalues in D3 correspond with the matrix in A.
*> Modified.
-*> \endverbatim
-*> \verbatim
+*>
*> D4 DOUBLE PRECISION array, dimension
-*> \endverbatim
-*> \verbatim
+*>
*> EVEIGS DOUBLE PRECISION array, dimension (max(NN))
*> The eigenvalues as computed by DSTEV('N', ... )
*> (I reserve the right to change this to the output of
*> whichever algorithm computes the most accurate eigenvalues).
-*> \endverbatim
-*> \verbatim
+*>
*> WA1 DOUBLE PRECISION array, dimension
-*> \endverbatim
-*> \verbatim
+*>
*> WA2 DOUBLE PRECISION array, dimension
-*> \endverbatim
-*> \verbatim
+*>
*> WA3 DOUBLE PRECISION array, dimension
-*> \endverbatim
-*> \verbatim
+*>
*> U DOUBLE PRECISION array, dimension (LDU, max(NN))
*> The orthogonal matrix computed by DSYTRD + DORGTR.
*> Modified.
-*> \endverbatim
-*> \verbatim
+*>
*> LDU INTEGER
*> The leading dimension of U, Z, and V. It must be at
*> least 1 and at least max( NN ).
*> Not modified.
-*> \endverbatim
-*> \verbatim
+*>
*> V DOUBLE PRECISION array, dimension (LDU, max(NN))
*> The Housholder vectors computed by DSYTRD in reducing A to
*> tridiagonal form.
*> Modified.
-*> \endverbatim
-*> \verbatim
+*>
*> TAU DOUBLE PRECISION array, dimension (max(NN))
*> The Householder factors computed by DSYTRD in reducing A
*> to tridiagonal form.
*> Modified.
-*> \endverbatim
-*> \verbatim
+*>
*> Z DOUBLE PRECISION array, dimension (LDU, max(NN))
*> The orthogonal matrix of eigenvectors computed by DSTEQR,
*> DPTEQR, and DSTEIN.
*> Modified.
-*> \endverbatim
-*> \verbatim
+*>
*> WORK DOUBLE PRECISION array, dimension (LWORK)
*> Workspace.
*> Modified.
-*> \endverbatim
-*> \verbatim
+*>
*> LWORK INTEGER
*> The number of entries in WORK. This must be at least
*> 1 + 4 * Nmax + 2 * Nmax * lg Nmax + 4 * Nmax**2
*> where Nmax = max( NN(j), 2 ) and lg = log base 2.
*> Not modified.
-*> \endverbatim
-*> \verbatim
+*>
*> IWORK INTEGER array,
*> dimension (6 + 6*Nmax + 5 * Nmax * lg Nmax )
*> where Nmax = max( NN(j), 2 ) and lg = log base 2.
*> Workspace.
*> Modified.
-*> \endverbatim
-*> \verbatim
+*>
*> RESULT DOUBLE PRECISION array, dimension (105)
*> The values computed by the tests described above.
*> The values are currently limited to 1/ulp, to avoid
*> overflow.
*> Modified.
-*> \endverbatim
-*> \verbatim
+*>
*> INFO INTEGER
*> If 0, then everything ran OK.
*> -1: NSIZES < 0
@@ -329,11 +303,9 @@
*> or DORMTR returns an error code, the
*> absolute value of it is returned.
*> Modified.
-*> \endverbatim
-*> \verbatim
+*>
*>-----------------------------------------------------------------------
-*> \endverbatim
-*> \verbatim
+*>
*> Some Local Variables and Parameters:
*> ---- ----- --------- --- ----------
*> ZERO, ONE Real 0 and 1.
@@ -347,8 +319,7 @@
*> so far (computed by DLAFTS).
*> COND, IMODE Values to be passed to the matrix generators.
*> ANORM Norm of A; passed to matrix generators.
-*> \endverbatim
-*> \verbatim
+*>
*> OVFL, UNFL Overflow and underflow thresholds.
*> ULP, ULPINV Finest relative precision and its inverse.
*> RTOVFL, RTUNFL Square roots of the previous 2 values.
@@ -358,8 +329,7 @@
*> generator for type "j".
*> KMAGN(j) The order of magnitude ( O(1),
*> O(overflow^(1/2) ), O(underflow^(1/2) )
-*> \endverbatim
-*> \verbatim
+*>
*> The tests performed are: Routine tested
*> 1= | A - U S U' | / ( |A| n ulp ) DSTEV('V', ... )
*> 2= | I - U U' | / ( n ulp ) DSTEV('V', ... )
@@ -385,8 +355,7 @@
*> 22= | A - U S U' | / ( |A| n ulp ) DSTEVR('V','V', ... )
*> 23= | I - U U' | / ( n ulp ) DSTEVR('V','V', ... )
*> 24= |D(with Z) - D(w/o Z)| / (|D| ulp) DSTEVR('N','V', ... )
-*> \endverbatim
-*> \verbatim
+*>
*> 25= | A - U S U' | / ( |A| n ulp ) DSYEV('L','V', ... )
*> 26= | I - U U' | / ( n ulp ) DSYEV('L','V', ... )
*> 27= |D(with Z) - D(w/o Z)| / (|D| ulp) DSYEV('L','N', ... )
@@ -441,15 +410,12 @@
*> 76= | A - U S U' | / ( |A| n ulp ) DSYEVR('L','V','V', ... )
*> 77= | I - U U' | / ( n ulp ) DSYEVR('L','V','V', ... )
*> 78= |D(with Z) - D(w/o Z)| / (|D| ulp) DSYEVR('L','N','V', ... )
-*> \endverbatim
-*> \verbatim
+*>
*> Tests 25 through 78 are repeated (as tests 79 through 132)
*> with UPLO='U'
-*> \endverbatim
-*> \verbatim
+*>
*> To be added in 1999
-*> \endverbatim
-*> \verbatim
+*>
*> 79= | A - U S U' | / ( |A| n ulp ) DSPEVR('L','V','A', ... )
*> 80= | I - U U' | / ( n ulp ) DSPEVR('L','V','A', ... )
*> 81= |D(with Z) - D(w/o Z)| / (|D| ulp) DSPEVR('L','N','A', ... )