Graphviz 13.0.0~dev.20250402.0402
Loading...
Searching...
No Matches
hier.c
Go to the documentation of this file.
1/*************************************************************************
2 * Copyright (c) 2011 AT&T Intellectual Property
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * https://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors: Details at https://graphviz.org
9 *************************************************************************/
10
11#include "smyrnadefs.h"
12#include "hier.h"
13#include <math.h>
14#include <neatogen/delaunay.h>
15#include <stdbool.h>
16#include <stddef.h>
17#include <util/alloc.h>
18
20{
21 int interval = 20;
22 size_t counter = 0; // no. of active nodes
23 double *x_coords = gv_calloc(hp->nvtxs[0], sizeof(double));
24 double *y_coords = gv_calloc(hp->nvtxs[0], sizeof(double));
25 int max_level = hp->nlevels - 1; // coarsest level
26 double width = parms->width;
27 double height = parms->height;
28 double distortion = parms->distortion;
29
30 /* get all logical coordinates of active nodes */
31 for (int i = 0; i < hp->nvtxs[max_level]; i++) {
32 counter =
33 extract_active_logical_coords(hp, i, max_level, x_coords,
34 y_coords, counter);
35 }
36
37 /* distort logical coordinates in order to get uniform density
38 * (equivalent to concentrating on the focus area)
39 */
40 if (fs->num_foci != 0) {
41 rescale_layout_polar(x_coords, y_coords, fs->x_foci,
42 fs->y_foci, fs->num_foci, counter,
43 interval, width, height, distortion);
44 }
45
46 /* Update the final physical coordinates of the active nodes */
47 for (int count = 0, i = 0; i < hp->nvtxs[max_level]; i++) {
48 count =
49 set_active_physical_coords(hp, i, max_level, x_coords,
50 y_coords, count);
51 }
52
53 free(x_coords);
54 free(y_coords);
55}
56
57#ifdef DEBUG
58static void dumpG(int nn, v_data * graph)
59{
60 int i, j;
61 for (i = 0; i < nn; i++) {
62 fprintf(stderr, "[%d]", i);
63 for (j = 1; j < graph->nedges; j++)
64 fprintf(stderr, " %d", graph->edges[j]);
65 fprintf(stderr, "\n");
66 graph++;
67 }
68}
69
70static void dumpEG(int nn, ex_vtx_data * graph)
71{
72 int i, j;
73 for (i = 0; i < nn; i++) {
74 fprintf(stderr, "[%d](%d,%d,%d)(%f,%f)", i, graph->size,
75 graph->active_level, graph->globalIndex, graph->x_coord,
76 graph->y_coord);
77 for (j = 1; j < graph->nedges; j++)
78 fprintf(stderr, " %d", graph->edges[j]);
79 fprintf(stderr, "\n");
80 graph++;
81 }
82}
83
84static void dumpHier(Hierarchy * hier)
85{
86 int i;
87
88 for (i = 0; i < hier->nlevels; i++) {
89 fprintf(stderr, "level [%d] %d %d \n", i, hier->nvtxs[i],
90 hier->nedges[i]);
91 fprintf(stderr, "graph\n");
92 dumpG(hier->nvtxs[i], hier->graphs[0]);
93 fprintf(stderr, "geom_graph\n");
94 dumpEG(hier->nvtxs[i], hier->geom_graphs[0]);
95 }
96}
97
98#endif
99
100Hierarchy *makeHier(int nn, int ne, v_data *graph, double *x_coords,
101 double *y_coords, bool dist2_limit) {
102 v_data *delaunay;
103 ex_vtx_data *geom_graph;
104 int ngeom_edges;
105 Hierarchy *hp;
106 int i;
107
108 delaunay = UG_graph(x_coords, y_coords, nn);
109
110 ngeom_edges =
111 init_ex_graph(delaunay, graph, nn, x_coords, y_coords,
112 &geom_graph);
113 free(delaunay[0].edges);
114 free(delaunay);
115
116 hp = create_hierarchy(graph, nn, ne, geom_graph, ngeom_edges, dist2_limit);
117 free(geom_graph[0].edges);
118 free(geom_graph);
119
120 init_active_level(hp, 0);
121 geom_graph = hp->geom_graphs[0];
122 for (i = 0; i < hp->nvtxs[0]; i++) {
123 geom_graph[i].physical_x_coord = (float) x_coords[i];
124 geom_graph[i].physical_y_coord = (float) y_coords[i];
125 }
126
127 return hp;
128}
129
131{
132 focus_t *fs = gv_alloc(sizeof(focus_t));
133 fs->num_foci = 0;
134 fs->foci_nodes = gv_calloc(ncnt, sizeof(int));
135 fs->x_foci = gv_calloc(ncnt, sizeof(double));
136 fs->y_foci = gv_calloc(ncnt, sizeof(double));
137 return fs;
138}
Memory allocation wrappers that exit on failure.
static void * gv_calloc(size_t nmemb, size_t size)
Definition alloc.h:26
static void * gv_alloc(size_t size)
Definition alloc.h:47
v_data * UG_graph(double *x, double *y, int n)
Definition delaunay.c:756
void free(void *)
Agraph_t * graph(char *name)
Definition gv.cpp:30
Hierarchy * makeHier(int nn, int ne, v_data *graph, double *x_coords, double *y_coords, bool dist2_limit)
Definition hier.c:100
void positionAllItems(Hierarchy *hp, focus_t *fs, reposition_t *parms)
Definition hier.c:19
focus_t * initFocus(int ncnt)
Definition hier.c:130
size_t extract_active_logical_coords(Hierarchy *hierarchy, int node, int level, double *x_coords, double *y_coords, size_t counter)
Definition hierarchy.c:999
Hierarchy * create_hierarchy(v_data *graph, int nvtxs, int nedges, ex_vtx_data *geom_graph, int ngeom_edges, bool dist2_limit)
Definition hierarchy.c:666
int set_active_physical_coords(Hierarchy *hierarchy, int node, int level, double *x_coords, double *y_coords, int counter)
Definition hierarchy.c:1033
void init_active_level(Hierarchy *hierarchy, int level)
Definition hierarchy.c:1129
int init_ex_graph(v_data *graph1, v_data *graph2, int n, double *x_coords, double *y_coords, ex_vtx_data **gp)
Definition hierarchy.c:946
void rescale_layout_polar(double *x_coords, double *y_coords, double *x_foci, double *y_foci, int num_foci, size_t n, int interval, double width, double height, double distortion)
v_data ** graphs
Definition hierarchy.h:41
int * nvtxs
Definition hierarchy.h:43
int * nedges
Definition hierarchy.h:44
ex_vtx_data ** geom_graphs
Definition hierarchy.h:42
int nlevels
Definition hierarchy.h:40
float physical_y_coord
Definition hierarchy.h:30
float physical_x_coord
Definition hierarchy.h:29
Definition hier.h:16
int * foci_nodes
Definition hier.h:18
int num_foci
Definition hier.h:17
double * y_foci
Definition hier.h:20
double * x_foci
Definition hier.h:19
static parms_t parms
Definition tlayout.c:80