summaryrefslogtreecommitdiff
path: root/SRC/zhetrs.f
diff options
context:
space:
mode:
Diffstat (limited to 'SRC/zhetrs.f')
-rw-r--r--SRC/zhetrs.f24
1 files changed, 11 insertions, 13 deletions
diff --git a/SRC/zhetrs.f b/SRC/zhetrs.f
index cd110ef0..2c45f86e 100644
--- a/SRC/zhetrs.f
+++ b/SRC/zhetrs.f
@@ -15,8 +15,8 @@
*> [TXT]</a>
*> \endhtmlonly
*
-* Definition
-* ==========
+* Definition:
+* ===========
*
* SUBROUTINE ZHETRS( UPLO, N, NRHS, A, LDA, IPIV, B, LDB, INFO )
*
@@ -29,20 +29,19 @@
* COMPLEX*16 A( LDA, * ), B( LDB, * )
* ..
*
-* Purpose
-* =======
*
-*>\details \b Purpose:
-*>\verbatim
+*> \par Purpose:
+* =============
+*>
+*> \verbatim
*>
*> ZHETRS solves a system of linear equations A*X = B with a complex
*> Hermitian matrix A using the factorization A = U*D*U**H or
*> A = L*D*L**H computed by ZHETRF.
-*>
-*>\endverbatim
+*> \endverbatim
*
-* Arguments
-* =========
+* Arguments:
+* ==========
*
*> \param[in] UPLO
*> \verbatim
@@ -105,10 +104,9 @@
*> = 0: successful exit
*> < 0: if INFO = -i, the i-th argument had an illegal value
*> \endverbatim
-*>
*
-* Authors
-* =======
+* Authors:
+* ========
*
*> \author Univ. of Tennessee
*> \author Univ. of California Berkeley