aboutsummaryrefslogtreecommitdiff
path: root/SRC/cpbtrf.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2011-11-03 20:32:56 +0000
committerjulie <julielangou@users.noreply.github.com>2011-11-03 20:32:56 +0000
commit1c3ba600671a59785b0c647d400226b4cc19a11f (patch)
tree2af647fcff119db522016721e10b5ee7768d22bb /SRC/cpbtrf.f
parentd5c30c90bdecf38da1064e2ed52583634573e741 (diff)
Cosmetic changes in Doxygen presentation.
Use \par instead of \details for section. add a Contributors Section and a Reference Section. Remove (some) verbatim section when not needed. Those changes have been done by hand so I am not sure I manage to catch them all.
Diffstat (limited to 'SRC/cpbtrf.f')
-rw-r--r--SRC/cpbtrf.f40
1 files changed, 19 insertions, 21 deletions
diff --git a/SRC/cpbtrf.f b/SRC/cpbtrf.f
index 8a11a5c7..ef3c019c 100644
--- a/SRC/cpbtrf.f
+++ b/SRC/cpbtrf.f
@@ -15,8 +15,8 @@
*> [TXT]</a>
*> \endhtmlonly
*
-* Definition
-* ==========
+* Definition:
+* ===========
*
* SUBROUTINE CPBTRF( UPLO, N, KD, AB, LDAB, INFO )
*
@@ -28,11 +28,11 @@
* COMPLEX AB( LDAB, * )
* ..
*
-* Purpose
-* =======
*
-*>\details \b Purpose:
-*>\verbatim
+*> \par Purpose:
+* =============
+*>
+*> \verbatim
*>
*> CPBTRF computes the Cholesky factorization of a complex Hermitian
*> positive definite band matrix A.
@@ -41,11 +41,10 @@
*> A = U**H * U, if UPLO = 'U', or
*> A = L * L**H, if UPLO = 'L',
*> where U is an upper triangular matrix and L is lower triangular.
-*>
-*>\endverbatim
+*> \endverbatim
*
-* Arguments
-* =========
+* Arguments:
+* ==========
*
*> \param[in] UPLO
*> \verbatim
@@ -97,10 +96,9 @@
*> positive definite, and the factorization could not be
*> completed.
*> \endverbatim
-*>
*
-* Authors
-* =======
+* Authors:
+* ========
*
*> \author Univ. of Tennessee
*> \author Univ. of California Berkeley
@@ -111,10 +109,9 @@
*
*> \ingroup complexOTHERcomputational
*
-*
-* Further Details
-* ===============
-*>\details \b Further \b Details
+*> \par Further Details:
+* =====================
+*>
*> \verbatim
*>
*> The band storage scheme is illustrated by the following example, when
@@ -135,12 +132,13 @@
*> a31 a42 a53 a64 * * l31 l42 l53 l64 * *
*>
*> Array elements marked * are not used by the routine.
-*>
-*> Contributed by
-*> Peter Mayes and Giuseppe Radicati, IBM ECSEC, Rome, March 23, 1989
-*>
*> \endverbatim
+*
+*> \par Contributors:
+* ==================
*>
+*> Peter Mayes and Giuseppe Radicati, IBM ECSEC, Rome, March 23, 1989
+*
* =====================================================================
SUBROUTINE CPBTRF( UPLO, N, KD, AB, LDAB, INFO )
*