summaryrefslogtreecommitdiff
path: root/SRC/chetrf.f
diff options
context:
space:
mode:
Diffstat (limited to 'SRC/chetrf.f')
-rw-r--r--SRC/chetrf.f32
1 files changed, 14 insertions, 18 deletions
diff --git a/SRC/chetrf.f b/SRC/chetrf.f
index 7f14b7d6..5732d490 100644
--- a/SRC/chetrf.f
+++ b/SRC/chetrf.f
@@ -15,8 +15,8 @@
*> [TXT]</a>
*> \endhtmlonly
*
-* Definition
-* ==========
+* Definition:
+* ===========
*
* SUBROUTINE CHETRF( UPLO, N, A, LDA, IPIV, WORK, LWORK, INFO )
*
@@ -29,11 +29,11 @@
* COMPLEX A( LDA, * ), WORK( * )
* ..
*
-* Purpose
-* =======
*
-*>\details \b Purpose:
-*>\verbatim
+*> \par Purpose:
+* =============
+*>
+*> \verbatim
*>
*> CHETRF computes the factorization of a complex Hermitian matrix A
*> using the Bunch-Kaufman diagonal pivoting method. The form of the
@@ -46,11 +46,10 @@
*> 1-by-1 and 2-by-2 diagonal blocks.
*>
*> This is the blocked version of the algorithm, calling Level 3 BLAS.
-*>
-*>\endverbatim
+*> \endverbatim
*
-* Arguments
-* =========
+* Arguments:
+* ==========
*
*> \param[in] UPLO
*> \verbatim
@@ -122,10 +121,9 @@
*> exactly singular, and division by zero will occur if it
*> is used to solve a system of equations.
*> \endverbatim
-*>
*
-* Authors
-* =======
+* Authors:
+* ========
*
*> \author Univ. of Tennessee
*> \author Univ. of California Berkeley
@@ -136,10 +134,9 @@
*
*> \ingroup complexHEcomputational
*
-*
-* Further Details
-* ===============
-*>\details \b Further \b Details
+*> \par Further Details:
+* =====================
+*>
*> \verbatim
*>
*> If UPLO = 'U', then A = U*D*U**H, where
@@ -175,7 +172,6 @@
*> If s = 1, D(k) overwrites A(k,k), and v overwrites A(k+1:n,k).
*> If s = 2, the lower triangle of D(k) overwrites A(k,k), A(k+1,k),
*> and A(k+1,k+1), and v overwrites A(k+2:n,k:k+1).
-*>
*> \endverbatim
*>
* =====================================================================