Skip to content

Commit 08e7a08

Browse files
author
huiscliu
committed
format
1 parent 775e41a commit 08e7a08

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

examples/solver.c

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
/*-------------------------------------------------------------------*
2-
* main test driver for ILUK *
3-
*-------------------------------------------------------------------*
4-
* Na Li, Oct 31, 2001 *
5-
* *
6-
* Report bugs / send comments to: [email protected], [email protected] *
2+
* Report bugs / send comments to: [email protected] *
73
*-------------------------------------------------------------------*/
4+
85
#include "itsol.h"
96

107
int main(void)

examples/vbiluk.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ int main(void)
1818
/*-------------------- main structs and wraper structs. */
1919
ITS_SparMat *csmat = NULL; /* matrix in csr formt */
2020
ITS_VBSparMat *vbmat = NULL;
21-
ITS_VBILUSpar *lu = NULL; /* vbilu preconditioner structure */
22-
ITS_SMat *MAT; /* Matrix structure for matvecs */
23-
ITS_PC *PRE; /* general precond structure */
21+
ITS_VBILUSpar *lu = NULL; /* vbilu preconditioner structure */
22+
ITS_SMat *MAT; /* Matrix structure for matvecs */
23+
ITS_PC *PRE; /* general precond structure */
2424
double *sol = NULL, *x = NULL, *prhs = NULL, *rhs = NULL;
2525

2626
int n, nnz;

0 commit comments

Comments
 (0)