|
Graphviz
2.29.20120523.0446
|
00001 /* $Id$ $Revision$ */ 00002 /* vim:set shiftwidth=4 ts=8: */ 00003 00004 /************************************************************************* 00005 * Copyright (c) 2011 AT&T Intellectual Property 00006 * All rights reserved. This program and the accompanying materials 00007 * are made available under the terms of the Eclipse Public License v1.0 00008 * which accompanies this distribution, and is available at 00009 * http://www.eclipse.org/legal/epl-v10.html 00010 * 00011 * Contributors: See CVS logs. Details at http://www.graphviz.org/ 00012 *************************************************************************/ 00013 00014 #ifdef __cplusplus 00015 extern "C" { 00016 #endif 00017 00018 #ifndef _DEFS_H_ 00019 #define _DEFS_H_ 00020 00021 #include "neato.h" 00022 00023 #include "sparsegraph.h" 00024 00025 #ifdef DIGCOLA 00026 #ifdef IPSEPCOLA 00027 typedef struct cluster_data { 00028 int nvars; /* total count of vars in clusters */ 00029 int nclusters; /* number of clusters */ 00030 int *clustersizes; /* number of vars in each cluster */ 00031 int **clusters; /* list of var indices for constituents of each c */ 00032 int ntoplevel; /* number of nodes not in any cluster */ 00033 int *toplevel; /* array of nodes not in any cluster */ 00034 boxf *bb; /* bounding box of each cluster */ 00035 } cluster_data; 00036 #endif 00037 #endif 00038 00039 00040 #ifdef __cplusplus 00041 } 00042 #endif 00043 00044 #endif
1.7.5