Skip to content

Commit c17eda0

Browse files
JPeterMugaasgruenich
authored andcommitted
Fix comment to redunce Doxygen warnings
Extracted from xiaoyeli#25 / commit 475956d.
1 parent 8902f48 commit c17eda0

File tree

5 files changed

+37
-49
lines changed

5 files changed

+37
-49
lines changed

FORTRAN/c_fortran_cgssv.c

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,7 @@ typedef struct {
2222
int *perm_r;
2323
} factors_t;
2424

25-
void
26-
c_fortran_cgssv_(int *iopt, int *n, int_t *nnz, int *nrhs,
27-
complex *values, int_t *rowind, int_t *colptr,
28-
complex *b, int *ldb,
29-
fptr *f_factors, /* a handle containing the address
30-
pointing to the factored matrices */
31-
int_t *info)
32-
33-
{
34-
/*
25+
/*!
3526
* This routine can be called from Fortran.
3627
*
3728
* iopt (input) int
@@ -44,9 +35,15 @@ c_fortran_cgssv_(int *iopt, int *n, int_t *nnz, int *nrhs,
4435
* If iopt == 1, it is an output and contains the pointer pointing to
4536
* the structure of the factored matrices.
4637
* Otherwise, it it an input.
47-
*
4838
*/
49-
39+
void
40+
c_fortran_cgssv_(int *iopt, int *n, int_t *nnz, int *nrhs,
41+
complex *values, int_t *rowind, int_t *colptr,
42+
complex *b, int *ldb,
43+
fptr *f_factors, /* a handle containing the address
44+
pointing to the factored matrices */
45+
int_t *info)
46+
{
5047
SuperMatrix A, AC, B;
5148
SuperMatrix *L, *U;
5249
int *perm_r; /* row permutations from partial pivoting */

FORTRAN/c_fortran_dgssv.c

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,7 @@ typedef struct {
2222
int *perm_r;
2323
} factors_t;
2424

25-
void
26-
c_fortran_dgssv_(int *iopt, int *n, int_t *nnz, int *nrhs,
27-
double *values, int_t *rowind, int_t *colptr,
28-
double *b, int *ldb,
29-
fptr *f_factors, /* a handle containing the address
30-
pointing to the factored matrices */
31-
int_t *info)
32-
33-
{
34-
/*
25+
/*!
3526
* This routine can be called from Fortran.
3627
*
3728
* iopt (input) int
@@ -44,9 +35,15 @@ c_fortran_dgssv_(int *iopt, int *n, int_t *nnz, int *nrhs,
4435
* If iopt == 1, it is an output and contains the pointer pointing to
4536
* the structure of the factored matrices.
4637
* Otherwise, it it an input.
47-
*
4838
*/
49-
39+
void
40+
c_fortran_dgssv_(int *iopt, int *n, int_t *nnz, int *nrhs,
41+
double *values, int_t *rowind, int_t *colptr,
42+
double *b, int *ldb,
43+
fptr *f_factors, /* a handle containing the address
44+
pointing to the factored matrices */
45+
int_t *info)
46+
{
5047
SuperMatrix A, AC, B;
5148
SuperMatrix *L, *U;
5249
int *perm_r; /* row permutations from partial pivoting */

FORTRAN/c_fortran_sgssv.c

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,7 @@ typedef struct {
2222
int *perm_r;
2323
} factors_t;
2424

25-
void
26-
c_fortran_sgssv_(int *iopt, int *n, int_t *nnz, int *nrhs,
27-
float *values, int_t *rowind, int_t *colptr,
28-
float *b, int *ldb,
29-
fptr *f_factors, /* a handle containing the address
30-
pointing to the factored matrices */
31-
int_t *info)
32-
33-
{
34-
/*
25+
/*!
3526
* This routine can be called from Fortran.
3627
*
3728
* iopt (input) int
@@ -44,9 +35,15 @@ c_fortran_sgssv_(int *iopt, int *n, int_t *nnz, int *nrhs,
4435
* If iopt == 1, it is an output and contains the pointer pointing to
4536
* the structure of the factored matrices.
4637
* Otherwise, it it an input.
47-
*
4838
*/
49-
39+
void
40+
c_fortran_sgssv_(int *iopt, int *n, int_t *nnz, int *nrhs,
41+
float *values, int_t *rowind, int_t *colptr,
42+
float *b, int *ldb,
43+
fptr *f_factors, /* a handle containing the address
44+
pointing to the factored matrices */
45+
int_t *info)
46+
{
5047
SuperMatrix A, AC, B;
5148
SuperMatrix *L, *U;
5249
int *perm_r; /* row permutations from partial pivoting */

FORTRAN/c_fortran_zgssv.c

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,7 @@ typedef struct {
2222
int *perm_r;
2323
} factors_t;
2424

25-
void
26-
c_fortran_zgssv_(int *iopt, int *n, int_t *nnz, int *nrhs,
27-
doublecomplex *values, int_t *rowind, int_t *colptr,
28-
doublecomplex *b, int *ldb,
29-
fptr *f_factors, /* a handle containing the address
30-
pointing to the factored matrices */
31-
int_t *info)
32-
33-
{
34-
/*
25+
/*!
3526
* This routine can be called from Fortran.
3627
*
3728
* iopt (input) int
@@ -44,9 +35,15 @@ c_fortran_zgssv_(int *iopt, int *n, int_t *nnz, int *nrhs,
4435
* If iopt == 1, it is an output and contains the pointer pointing to
4536
* the structure of the factored matrices.
4637
* Otherwise, it it an input.
47-
*
4838
*/
49-
39+
void
40+
c_fortran_zgssv_(int *iopt, int *n, int_t *nnz, int *nrhs,
41+
doublecomplex *values, int_t *rowind, int_t *colptr,
42+
doublecomplex *b, int *ldb,
43+
fptr *f_factors, /* a handle containing the address
44+
pointing to the factored matrices */
45+
int_t *info)
46+
{
5047
SuperMatrix A, AC, B;
5148
SuperMatrix *L, *U;
5249
int *perm_r; /* row permutations from partial pivoting */

SRC/mark_relax.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ at the top-level directory.
1515
* -- SuperLU routine (version 4.0) --
1616
* Lawrence Berkeley National Laboratory
1717
* June 1, 2009
18-
* <\pre>
18+
* </pre>
1919
*/
2020
#include "slu_ddefs.h"
2121

0 commit comments

Comments
 (0)