Skip to content

Commit

Permalink
Merge pull request xiaoyeli#150 from gruenich/feature/improve-doxygen
Browse files Browse the repository at this point in the history
Fix some Doxygen warnings
  • Loading branch information
xiaoyeli authored Aug 6, 2024
2 parents 18958c3 + cfe25cb commit 67bdc36
Show file tree
Hide file tree
Showing 22 changed files with 29 additions and 29 deletions.
14 changes: 7 additions & 7 deletions DOC/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
*/

/*!
\defgroup Common
\defgroup Common Common
\brief Common code shared within SuperLU.

Type-independent code.
*/

/*!
\defgroup Example
\defgroup Example Example
\brief Examples of how to use SuperLU.

Various examples.
*/

/*!
\defgroup Testing
\defgroup Testing Testing
\brief Test that SuperLU works as intended.

Tests should be run and remain working when SuperLU code is modified.
Expand All @@ -26,31 +26,31 @@
*/

/*!
\defgroup TestingC
\defgroup TestingC Testing Complex Float
\ingroup Testing
\brief Tests for complex float.

These tests start with the letter c.
*/

/*!
\defgroup TestingD
\defgroup TestingD Testing Double
\ingroup Testing
\brief Tests for double.

These tests start with the letter d.
*/

/*!
\defgroup TestingS
\defgroup TestingS Testing Float
\ingroup Testing
\brief Tests for float.

These tests start with the letter s.
*/

/*!
\defgroup TestingZ
\defgroup TestingZ Testing Complex Double
\ingroup Testing
\brief Tests for complex double.

Expand Down
2 changes: 1 addition & 1 deletion EXAMPLE/citersol.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ at the top-level directory.
* August, 2011
*/

/*! @file citersol.c
/*! \file
* \brief Example #1 showing how to use ILU to precondition GMRES
*
* This example shows that ILU is computed from the equilibrated matrix,
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLE/citersol1.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ at the top-level directory.
* August, 2011
*/

/*! @file citersol1.c
/*! \file
* \brief Example #2 showing how to use ILU to precondition GMRES
*
* This example shows that ILU is computed from the equilibrated matrix,
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLE/ditersol.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ at the top-level directory.
* August, 2011
*/

/*! @file ditersol.c
/*! \file
* \brief Example #1 showing how to use ILU to precondition GMRES
*
* This example shows that ILU is computed from the equilibrated matrix,
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLE/ditersol1.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ at the top-level directory.
* August, 2011
*/

/*! @file ditersol1.c
/*! \file
* \brief Example #2 showing how to use ILU to precondition GMRES
*
* This example shows that ILU is computed from the equilibrated matrix,
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLE/sitersol.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ at the top-level directory.
* August, 2011
*/

/*! @file sitersol.c
/*! \file
* \brief Example #1 showing how to use ILU to precondition GMRES
*
* This example shows that ILU is computed from the equilibrated matrix,
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLE/sitersol1.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ at the top-level directory.
* August, 2011
*/

/*! @file sitersol1.c
/*! \file
* \brief Example #2 showing how to use ILU to precondition GMRES
*
* This example shows that ILU is computed from the equilibrated matrix,
Expand Down
4 changes: 2 additions & 2 deletions EXAMPLE/sp_ienv.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! \file
/*
Copyright (c) 2003, The Regents of the University of California, through
Lawrence Berkeley National Laboratory (subject to receipt of any required
approvals from U.S. Dept. of Energy)
Expand All @@ -8,7 +8,7 @@ All rights reserved.
The source code is distributed under BSD license, see the file License.txt
at the top-level directory.
*/
/*! @file SRC/sp_ienv.c
/*! \file
* \brief Chooses machine-dependent parameters for the local environment.
*
* <pre>
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLE/zitersol.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ at the top-level directory.
* August, 2011
*/

/*! @file zitersol.c
/*! \file
* \brief Example #1 showing how to use ILU to precondition GMRES
*
* This example shows that ILU is computed from the equilibrated matrix,
Expand Down
2 changes: 1 addition & 1 deletion EXAMPLE/zitersol1.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ at the top-level directory.
* August, 2011
*/

/*! @file zitersol1.c
/*! \file
* \brief Example #2 showing how to use ILU to precondition GMRES
*
* This example shows that ILU is computed from the equilibrated matrix,
Expand Down
2 changes: 1 addition & 1 deletion SRC/cgsisx.c
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ at the top-level directory.
* mem_usage (output) mem_usage_t*
* Record the memory usage statistics, consisting of following fields:
* - for_lu (float)
* The amount of space used in bytes for L\U data structures.
* The amount of space used in bytes for L\\U data structures.
* - total_needed (float)
* The amount of space needed in bytes to perform factorization.
* - expansions (int)
Expand Down
2 changes: 1 addition & 1 deletion SRC/cgssvx.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ at the top-level directory.
* mem_usage (output) mem_usage_t*
* Record the memory usage statistics, consisting of following fields:
* - for_lu (float)
* The amount of space used in bytes for L\U data structures.
* The amount of space used in bytes for L\\U data structures.
* - total_needed (float)
* The amount of space needed in bytes to perform factorization.
* - expansions (int)
Expand Down
2 changes: 1 addition & 1 deletion SRC/dgsisx.c
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ at the top-level directory.
* mem_usage (output) mem_usage_t*
* Record the memory usage statistics, consisting of following fields:
* - for_lu (float)
* The amount of space used in bytes for L\U data structures.
* The amount of space used in bytes for L\\U data structures.
* - total_needed (float)
* The amount of space needed in bytes to perform factorization.
* - expansions (int)
Expand Down
2 changes: 1 addition & 1 deletion SRC/dgssvx.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ at the top-level directory.
* mem_usage (output) mem_usage_t*
* Record the memory usage statistics, consisting of following fields:
* - for_lu (float)
* The amount of space used in bytes for L\U data structures.
* The amount of space used in bytes for L\\U data structures.
* - total_needed (float)
* The amount of space needed in bytes to perform factorization.
* - expansions (int)
Expand Down
2 changes: 1 addition & 1 deletion SRC/sgsisx.c
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ at the top-level directory.
* mem_usage (output) mem_usage_t*
* Record the memory usage statistics, consisting of following fields:
* - for_lu (float)
* The amount of space used in bytes for L\U data structures.
* The amount of space used in bytes for L\\U data structures.
* - total_needed (float)
* The amount of space needed in bytes to perform factorization.
* - expansions (int)
Expand Down
2 changes: 1 addition & 1 deletion SRC/sgssvx.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ at the top-level directory.
* mem_usage (output) mem_usage_t*
* Record the memory usage statistics, consisting of following fields:
* - for_lu (float)
* The amount of space used in bytes for L\U data structures.
* The amount of space used in bytes for L\\U data structures.
* - total_needed (float)
* The amount of space needed in bytes to perform factorization.
* - expansions (int)
Expand Down
2 changes: 1 addition & 1 deletion SRC/slu_cdefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ at the top-level directory.
*
* Global data structures used in LU factorization -
*
* nsuper: #supernodes = nsuper + 1, numbered [0, nsuper].
* nsuper: \#supernodes = nsuper + 1, numbered [0, nsuper].
* (xsup,supno): supno[i] is the supernode no to which i belongs;
* xsup(s) points to the beginning of the s-th supernode.
* e.g. supno 0 1 2 2 3 3 3 4 4 4 4 4 (n=12)
Expand Down
2 changes: 1 addition & 1 deletion SRC/slu_ddefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ at the top-level directory.
*
* Global data structures used in LU factorization -
*
* nsuper: #supernodes = nsuper + 1, numbered [0, nsuper].
* nsuper: \#supernodes = nsuper + 1, numbered [0, nsuper].
* (xsup,supno): supno[i] is the supernode no to which i belongs;
* xsup(s) points to the beginning of the s-th supernode.
* e.g. supno 0 1 2 2 3 3 3 4 4 4 4 4 (n=12)
Expand Down
2 changes: 1 addition & 1 deletion SRC/slu_sdefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ at the top-level directory.
*
* Global data structures used in LU factorization -
*
* nsuper: #supernodes = nsuper + 1, numbered [0, nsuper].
* nsuper: \#supernodes = nsuper + 1, numbered [0, nsuper].
* (xsup,supno): supno[i] is the supernode no to which i belongs;
* xsup(s) points to the beginning of the s-th supernode.
* e.g. supno 0 1 2 2 3 3 3 4 4 4 4 4 (n=12)
Expand Down
2 changes: 1 addition & 1 deletion SRC/slu_zdefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ at the top-level directory.
*
* Global data structures used in LU factorization -
*
* nsuper: #supernodes = nsuper + 1, numbered [0, nsuper].
* nsuper: \#supernodes = nsuper + 1, numbered [0, nsuper].
* (xsup,supno): supno[i] is the supernode no to which i belongs;
* xsup(s) points to the beginning of the s-th supernode.
* e.g. supno 0 1 2 2 3 3 3 4 4 4 4 4 (n=12)
Expand Down
2 changes: 1 addition & 1 deletion SRC/zgsisx.c
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ at the top-level directory.
* mem_usage (output) mem_usage_t*
* Record the memory usage statistics, consisting of following fields:
* - for_lu (float)
* The amount of space used in bytes for L\U data structures.
* The amount of space used in bytes for L\\U data structures.
* - total_needed (float)
* The amount of space needed in bytes to perform factorization.
* - expansions (int)
Expand Down
2 changes: 1 addition & 1 deletion SRC/zgssvx.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ at the top-level directory.
* mem_usage (output) mem_usage_t*
* Record the memory usage statistics, consisting of following fields:
* - for_lu (float)
* The amount of space used in bytes for L\U data structures.
* The amount of space used in bytes for L\\U data structures.
* - total_needed (float)
* The amount of space needed in bytes to perform factorization.
* - expansions (int)
Expand Down

0 comments on commit 67bdc36

Please sign in to comment.