]> granicus.if.org Git - graphviz/commitdiff
sfdpgen stress_model: remove unused 'A' parameter
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 23 Jul 2022 15:27:30 +0000 (08:27 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 29 Jul 2022 00:54:05 +0000 (17:54 -0700)
cmd/gvmap/make_map.c
lib/sfdpgen/sfdpinit.c
lib/sfdpgen/stress_model.c
lib/sfdpgen/stress_model.h

index 8e1c30358e56e250ac716ae02aac30fc67757fac..dec68d7e58f08301625690cdf0b73ca6b3037811 100644 (file)
@@ -144,7 +144,7 @@ void improve_contiguity(int n, int dim, int *grouping, SparseMatrix poly_point_m
   }
 
   if (Verbose) fprintf(stderr,"ratio (edges among discontiguous regions vs total edges)=%f\n",((double) nbad)/ia[n]);
-  stress_model(dim, D, D, &x, FALSE, maxit, tol, &flag);
+  stress_model(dim, D, &x, FALSE, maxit, tol, &flag);
 
   assert(!flag);
 
index 73c8348b3eb268f5a0162ce066a54bd5ac7a2229..2503986198397005c0a98b358546263132d7eefa 100644 (file)
@@ -136,7 +136,7 @@ static void sfdpLayout(graph_t * g, spring_electrical_control ctrl,
            D = DD;
        }
 
-       stress_model(Ndim, A, D, &pos, TRUE, maxit, tol, &flag);
+       stress_model(Ndim, D, &pos, TRUE, maxit, tol, &flag);
        }
        break;
     }
index f7c978255e6d22d9b74a82e619e060deeb01edeb..d5fd06d5f6ad13cdfc3ef5e030fac04e0bea95a3 100644 (file)
@@ -54,6 +54,6 @@ static void stress_model_core(int dim, SparseMatrix B, double **x, int edge_len_
   if (A != B) SparseMatrix_delete(A);
 }
 
-void stress_model(int dim, SparseMatrix A, SparseMatrix D, double **x, int edge_len_weighted, int maxit_sm, double tol, int *flag){
+void stress_model(int dim, SparseMatrix D, double **x, int edge_len_weighted, int maxit_sm, double tol, int *flag){
   stress_model_core(dim, D, x, edge_len_weighted, maxit_sm, tol, flag);
 }
index add2651026ae506f48c43a075aa15e977f76cf5d..5997b33f3fb75275dca465beaf48867db850d3f2 100644 (file)
@@ -1,3 +1,3 @@
 #pragma once
 
-void stress_model(int dim, SparseMatrix A, SparseMatrix D, double **x, int edge_len_weighted, int maxit, double tol, int *flag);
+void stress_model(int dim, SparseMatrix D, double **x, int edge_len_weighted, int maxit, double tol, int *flag);