Graphviz 13.0.0~dev.20250402.0402
Loading...
Searching...
No Matches
hierarchy.h
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#pragma once
12
14#include <stdbool.h>
15#include <stddef.h>
16
17typedef struct {
18 int nedges; // degree, including self-loop
19 int *edges; // neighbors; edges[0] = self
20 int size; // no. of original nodes contained
21 int active_level; // Node displayed iff active_level == node's level
22 int globalIndex; // Each node has a unique ID over all levels
23
24 // position of node in universal coordinate system
25 float x_coord;
26 float y_coord;
27
28 // position of node in physical (device) coordinate system
31 //previous coords and active level (for animation)
35
36
38
39typedef struct {
43 int * nvtxs;
44 int * nedges;
45 /* Node i on level k is mapped to coarse node v2cv[k][i] on level k+1
46 */
47 int ** v2cv;
48 /* Coarse node i on level k contains nodes cv2v[k][2*i] and
49 * cv2v[k][2*i+1] on level k-1. If it contains only 1 node, then
50 * cv2v[k][2*i+1] will be -1
51 */
52 int ** cv2v;
54} Hierarchy;
55
56typedef struct {
57 int num_fine_nodes; /* 50 */
58 double coarsening_rate; /* 2.5 */
60
62 ex_vtx_data *geom_graph, int ngeom_edges,
63 bool dist2_limit);
64
65void set_active_levels(Hierarchy*, int*, int, levelparms_t*);
66double find_closest_active_node(Hierarchy*, double x, double y, int*);
67
68size_t extract_active_logical_coords(Hierarchy *hierarchy, int node, int level,
69 double *x_coords, double *y_coords, size_t counter);
70int set_active_physical_coords(Hierarchy *, int node, int level,
71 double *x_coords, double *y_coords, int counter);
72
73void init_active_level(Hierarchy* hierarchy, int level);
74
75// creating a geometric graph:
76int init_ex_graph(v_data * graph1, v_data * graph2, int n,
77 double *x_coords, double *y_coords, ex_vtx_data ** gp);
78
79// layout distortion:
80void rescale_layout_polar(double * x_coords, double * y_coords,
81 double * x_foci, double * y_foci, int num_foci, size_t n, int interval,
82 double width, double height, double distortion);
83
84void find_physical_coords(Hierarchy*, int, int, double *x, double *y);
85void find_old_physical_coords(Hierarchy * hierarchy, int level, int node, double *x,double *y);
86
87
88int find_active_ancestor(Hierarchy*, int, int);
89void find_active_ancestor_info(Hierarchy * hierarchy, int level, int node, int *levell,int *nodee);
90
91void quicksort_place(double *place, int *ordering, size_t size);
Agraph_t * graph(char *name)
Definition gv.cpp:30
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
void set_active_levels(Hierarchy *, int *, int, levelparms_t *)
Definition hierarchy.c:753
void find_active_ancestor_info(Hierarchy *hierarchy, int level, int node, int *levell, int *nodee)
Definition hierarchy.c:1078
void init_active_level(Hierarchy *hierarchy, int level)
Definition hierarchy.c:1129
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)
int find_active_ancestor(Hierarchy *, int, int)
Definition hierarchy.c:1115
void quicksort_place(double *place, int *ordering, size_t size)
void find_old_physical_coords(Hierarchy *hierarchy, int level, int node, double *x, double *y)
Definition hierarchy.c:1097
int set_active_physical_coords(Hierarchy *, int node, int level, double *x_coords, double *y_coords, int counter)
Definition hierarchy.c:1033
double find_closest_active_node(Hierarchy *, double x, double y, int *)
Definition hierarchy.c:929
void find_physical_coords(Hierarchy *, int, int, double *x, double *y)
Definition hierarchy.c:1064
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
static int nedges
total no. of edges used in routing
Definition routespl.c:31
v_data ** graphs
Definition hierarchy.h:41
int * nvtxs
Definition hierarchy.h:43
int ** cv2v
Definition hierarchy.h:52
int * nedges
Definition hierarchy.h:44
ex_vtx_data ** geom_graphs
Definition hierarchy.h:42
int nlevels
Definition hierarchy.h:40
int ** v2cv
Definition hierarchy.h:47
int maxNodeIndex
Definition hierarchy.h:53
float physical_y_coord
Definition hierarchy.h:30
float old_physical_y_coord
Definition hierarchy.h:33
float old_physical_x_coord
Definition hierarchy.h:32
int old_active_level
Definition hierarchy.h:34
float physical_x_coord
Definition hierarchy.h:29
int globalIndex
Definition hierarchy.h:22
float x_coord
Definition hierarchy.h:25
int active_level
Definition hierarchy.h:21
float y_coord
Definition hierarchy.h:26
int * edges
Definition hierarchy.h:19
int num_fine_nodes
Definition hierarchy.h:57
double coarsening_rate
Definition hierarchy.h:58