]> granicus.if.org Git - graphviz/commitdiff
sfdpgen jacobi: remove unused 'flag' parameter
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 23 Jul 2022 15:18:15 +0000 (08:18 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 29 Jul 2022 00:54:05 +0000 (17:54 -0700)
lib/sfdpgen/sparse_solve.c

index bedba34a2462c776c9be62f9e85a742f28ce7b40..05be86d40a6d6775db90f36287e1f6010cc39556 100644 (file)
@@ -236,7 +236,7 @@ double cg(Operator Ax, Operator precond, int n, int dim, double *x0, double *rhs
   return res;
 }
 
-static double* jacobi(SparseMatrix A, int dim, double *x0, double *rhs, int maxit, int *flag){
+static double* jacobi(SparseMatrix A, int dim, double *x0, double *rhs, int maxit{
   /* maxit iteration of jacobi */
   double *x, *y, *b, sum, diag, *a;
   int k, i, j, n = A->n, *ia, *ja, iter;
@@ -299,7 +299,7 @@ double SparseMatrix_solve(SparseMatrix A, int dim, double *x0, double *rhs, doub
     Operator_diag_precon_delete(precond);
     break;
   case SOLVE_METHOD_JACOBI:{
-    jacobi(A, dim, x0, rhs, maxit, flag);
+    jacobi(A, dim, x0, rhs, maxit);
     break;
   }
   default: