Graphviz 15.1.1~dev.20260630.1303
Loading...
Searching...
No Matches
defs.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 v2.0
5 * which accompanies this distribution, and is available at
6 * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
7 *
8 * Contributors: Details at https://graphviz.org
9 *************************************************************************/
10
11#pragma once
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17#include <neatogen/neato.h>
18
20#include <stddef.h>
21
22#ifdef DIGCOLA
23#ifdef IPSEPCOLA
24 typedef struct cluster_data {
25 size_t nvars;
26 size_t nclusters;
27 size_t *clustersizes;
28 int **clusters; /* list of var indices for constituents of each c */
29 size_t ntoplevel;
30 int *toplevel; /* array of nodes not in any cluster */
31 boxf *bb; /* bounding box of each cluster */
32 } cluster_data;
33#endif
34#endif
35
36
37#ifdef __cplusplus
38}
39#endif
Definition geom.h:41