]> granicus.if.org Git - graphviz/commitdiff
neatogen call_tri: remove unused 'dim' parameter
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 23 Jul 2022 01:16:47 +0000 (18:16 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 28 Jul 2022 01:47:22 +0000 (18:47 -0700)
lib/neatogen/call_tri.c
lib/neatogen/call_tri.h
lib/neatogen/overlap.c
lib/sfdpgen/post_process.c

index 3aee8ba0bc9f0f5bde141e4d371eabd255663746..b6effec1cf3c159ad22116100b7330348ab90836 100644 (file)
@@ -16,8 +16,7 @@
 #include <stddef.h>
 #include <stdbool.h>
 
-SparseMatrix call_tri(int n, int dim, double * x)
-{
+SparseMatrix call_tri(int n, double *x) {
     double one = 1;
     int i, ii, jj;
     SparseMatrix A;
index c6aaaeff5a8fe753f7e85a00502f4a2340009131..996c6306d90a6e2b004a83c0c36eee412cdd79ed 100644 (file)
@@ -10,5 +10,5 @@
 
 #pragma once
 
-SparseMatrix call_tri(int n, int dim, double * x);
+SparseMatrix call_tri(int n, double * x);
 SparseMatrix call_tri2(int n, int dim, double * x);
index 45999ee70bd52fb00db68011a51f5cf1e8297068..a4a56e000d5fa3d6563c42c7a6d558c679e53ff6 100644 (file)
@@ -390,7 +390,7 @@ OverlapSmoother OverlapSmoother_new(SparseMatrix A, int m,
   lambda = sm->lambda = N_GNEW(m,double);
   for (i = 0; i < m; i++) sm->lambda[i] = lambda0;
   
-  B= call_tri(m, dim, x);
+  B= call_tri(m, x);
 
   if (!neighborhood_only){
     SparseMatrix C, D;
index bba858e3a92494438bcbc4551bc358997c328bde..d741238995916a2d614c60c36a522120e0c0d197 100644 (file)
@@ -792,7 +792,7 @@ TriangleSmoother TriangleSmoother_new(SparseMatrix A, int dim, double lambda0, d
   
   if (m > 2){
     if (use_triangularization){
-      B= call_tri(m, dim, x);
+      B= call_tri(m, x);
     } else {
       B= call_tri2(m, dim, x);
     }