]> granicus.if.org Git - graphviz/commitdiff
topfish cpGraph: use cgraph wrappers for allocation
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 18 Sep 2022 17:14:21 +0000 (10:14 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 21 Sep 2022 01:11:01 +0000 (18:11 -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/topfish/hierarchy.c

index 28f0038b4b79781a07b9c22bc3b0eb849a88b72d..f365a44706f6848169c7d5c75d0dc138a30753e4 100644 (file)
@@ -642,18 +642,16 @@ void release(Hierarchy * hierarchy)
 
 static v_data *cpGraph(v_data * graph, int n, int nedges)
 {
-    v_data *cpGraph;
-    int *edges;
     float *ewgts = NULL;
     int i, j;
 
     if (graph == NULL || n == 0) {
        return NULL;
     }
-    cpGraph = N_NEW(n, v_data);
-    edges = N_NEW(2 * nedges + n, int);
+    v_data *cpGraph = gv_calloc(n, sizeof(v_data));
+    int *edges = gv_calloc(2 * nedges + n, sizeof(int));
     if (graph[0].ewgts != NULL) {
-       ewgts = N_NEW(2 * nedges + n, float);
+       ewgts = gv_calloc(2 * nedges + n, sizeof(float));
     }
 
     for (i = 0; i < n; i++) {