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

index cbbcb8e61c8f1472dfe8ee4937ab254e0c0c500d..075d74dafe49f304fb7146308de55af137e345b0 100644 (file)
@@ -26,7 +26,7 @@ This is somewhat similar to the binary stress model
 
 */
 
-UniformStressSmoother UniformStressSmoother_new(int dim, SparseMatrix A, double *x, double alpha, double M, int *flag){
+UniformStressSmoother UniformStressSmoother_new(SparseMatrix A, double *x, double alpha, double M, int *flag){
   UniformStressSmoother sm;
   int i, j, k, m = A->m, *ia = A->ia, *ja = A->ja, *iw, *jw, *id, *jd;
   int nz;
@@ -160,19 +160,19 @@ void uniform_stress(int dim, SparseMatrix A, double *x, int *flag){
   B = get_distance_matrix(A, scaling);
   assert(SparseMatrix_is_symmetric(B, false));
 
-  sm = UniformStressSmoother_new(dim, B, x, 1000000*lambda0, M, flag);
+  sm = UniformStressSmoother_new(B, x, 1000000*lambda0, M, flag);
   UniformStressSmoother_smooth(sm, dim, x, maxit);
   UniformStressSmoother_delete(sm);
 
-  sm = UniformStressSmoother_new(dim, B, x, 10000*lambda0, M, flag);
+  sm = UniformStressSmoother_new(B, x, 10000*lambda0, M, flag);
   UniformStressSmoother_smooth(sm, dim, x, maxit);
   UniformStressSmoother_delete(sm);
 
-  sm = UniformStressSmoother_new(dim, B, x, 100*lambda0, M, flag);
+  sm = UniformStressSmoother_new(B, x, 100*lambda0, M, flag);
   UniformStressSmoother_smooth(sm, dim, x, maxit);
   UniformStressSmoother_delete(sm);
 
-  sm = UniformStressSmoother_new(dim, B, x, lambda0, M, flag);
+  sm = UniformStressSmoother_new(B, x, lambda0, M, flag);
   UniformStressSmoother_smooth(sm, dim, x, maxit);
   UniformStressSmoother_delete(sm);
 
index c0491d71801bcdd7f91b49d79b2e5bc482af6f6c..b78799a1c7bf7c77289dd30f075989bf5cde0779 100644 (file)
@@ -18,6 +18,6 @@ typedef StressMajorizationSmoother UniformStressSmoother;
 
 void UniformStressSmoother_delete(UniformStressSmoother sm);
 
-UniformStressSmoother UniformStressSmoother_new(int dim, SparseMatrix A, double *x, double alpha, double M, int *flag);
+UniformStressSmoother UniformStressSmoother_new(SparseMatrix A, double *x, double alpha, double M, int *flag);
 
 void uniform_stress(int dim, SparseMatrix A, double *x, int *flag);