Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
huiscliu committed Mar 12, 2019
1 parent 775e41a commit 08e7a08
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
7 changes: 2 additions & 5 deletions examples/solver.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
/*-------------------------------------------------------------------*
* main test driver for ILUK *
*-------------------------------------------------------------------*
* Na Li, Oct 31, 2001 *
* *
* Report bugs / send comments to: saad@cs.umn.edu, nli@cs.umn.edu *
* Report bugs / send comments to: saad@cs.umn.edu *
*-------------------------------------------------------------------*/

#include "itsol.h"

int main(void)
Expand Down
6 changes: 3 additions & 3 deletions examples/vbiluk.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ int main(void)
/*-------------------- main structs and wraper structs. */
ITS_SparMat *csmat = NULL; /* matrix in csr formt */
ITS_VBSparMat *vbmat = NULL;
ITS_VBILUSpar *lu = NULL; /* vbilu preconditioner structure */
ITS_SMat *MAT; /* Matrix structure for matvecs */
ITS_PC *PRE; /* general precond structure */
ITS_VBILUSpar *lu = NULL; /* vbilu preconditioner structure */
ITS_SMat *MAT; /* Matrix structure for matvecs */
ITS_PC *PRE; /* general precond structure */
double *sol = NULL, *x = NULL, *prhs = NULL, *rhs = NULL;

int n, nnz;
Expand Down

0 comments on commit 08e7a08

Please sign in to comment.