summaryrefslogtreecommitdiff
path: root/SRC/zspsvx.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/zspsvx.f
parentd5c30c90bdecf38da1064e2ed52583634573e741 (diff)
downloadlapack-1c3ba600671a59785b0c647d400226b4cc19a11f.tar.gz
lapack-1c3ba600671a59785b0c647d400226b4cc19a11f.tar.bz2
lapack-1c3ba600671a59785b0c647d400226b4cc19a11f.zip
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/zspsvx.f')
-rw-r--r--SRC/zspsvx.f39
1 files changed, 19 insertions, 20 deletions
diff --git a/SRC/zspsvx.f b/SRC/zspsvx.f
index b28194dc..78a96da8 100644
--- a/SRC/zspsvx.f
+++ b/SRC/zspsvx.f
@@ -15,8 +15,8 @@
*> [TXT]</a>
*> \endhtmlonly
*
-* Definition
-* ==========
+* Definition:
+* ===========
*
* SUBROUTINE ZSPSVX( FACT, UPLO, N, NRHS, AP, AFP, IPIV, B, LDB, X,
* LDX, RCOND, FERR, BERR, WORK, RWORK, INFO )
@@ -33,11 +33,11 @@
* $ X( LDX, * )
* ..
*
-* Purpose
-* =======
*
-*>\details \b Purpose:
-*>\verbatim
+*> \par Purpose:
+* =============
+*>
+*> \verbatim
*>
*> ZSPSVX uses the diagonal pivoting factorization A = U*D*U**T or
*> A = L*D*L**T to compute the solution to a complex system of linear
@@ -46,9 +46,12 @@
*>
*> Error bounds on the solution and a condition estimate are also
*> provided.
+*> \endverbatim
+*
+*> \par Description:
+* =================
*>
-*> Description
-*> ===========
+*> \verbatim
*>
*> The following steps are performed:
*>
@@ -72,11 +75,10 @@
*> 4. Iterative refinement is applied to improve the computed solution
*> matrix and calculate error bounds and backward error estimates
*> for it.
-*>
-*>\endverbatim
+*> \endverbatim
*
-* Arguments
-* =========
+* Arguments:
+* ==========
*
*> \param[in] FACT
*> \verbatim
@@ -238,10 +240,9 @@
*> computed solution can be more accurate than the
*> value of RCOND would suggest.
*> \endverbatim
-*>
*
-* Authors
-* =======
+* Authors:
+* ========
*
*> \author Univ. of Tennessee
*> \author Univ. of California Berkeley
@@ -252,10 +253,9 @@
*
*> \ingroup complex16OTHERsolve
*
-*
-* Further Details
-* ===============
-*>\details \b Further \b Details
+*> \par Further Details:
+* =====================
+*>
*> \verbatim
*>
*> The packed storage scheme is illustrated by the following example
@@ -271,7 +271,6 @@
*> Packed storage of the upper triangle of A:
*>
*> AP = [ a11, a12, a22, a13, a23, a33, a14, a24, a34, a44 ]
-*>
*> \endverbatim
*>
* =====================================================================