]> granicus.if.org Git - graphviz/commitdiff
sfdpgen maximal_independent_edge_set_heaves…: use cgraph wrappers for allocation
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 10 Sep 2022 03:13:09 +0000 (20:13 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 11 Sep 2022 23:56:02 +0000 (16:56 -0700)
The lib/cgraph/alloc.h wrappers are similar to the older lib/common/memory.h
wrappers except (1) they are header-only and (2) they live in a directory
(cgraph) that is at the root of the dependency tree. The long term plan is to
replace all use of lib/common/memory.h with lib/cgraph/alloc.h.

lib/sfdpgen/Multilevel.c

index 9c35b21da8b82fe614f312f1ef2445152a627690..9e7fefecd5387f86815d7bfccee085d733662caa 100644 (file)
@@ -648,10 +648,10 @@ static void maximal_independent_edge_set_heavest_cluster_pernode_leaves_first(Sp
   m = A->m;
   n = A->n;
   assert(n == m);
-  *cluster = N_GNEW(m,int);
-  *clusterp = N_GNEW((m+1),int);
-  matched = N_GNEW(m,int);
-  vlist = N_GNEW(2*m,double);
+  *cluster = gv_calloc(m, sizeof(int));
+  *clusterp = gv_calloc(m + 1, sizeof(int));
+  matched = gv_calloc(m, sizeof(int));
+  vlist = gv_calloc(2 * m, sizeof(double));
 
   for (i = 0; i < m; i++) matched[i] = i;