#endif
#include <dotgen/aspect.h>
+#include <stdbool.h>
extern void acyclic(Agraph_t *);
extern void allocate_ranks(Agraph_t *);
extern int flat_edges(Agraph_t *);
extern void install_cluster(Agraph_t *, Agnode_t *, int, nodequeue *);
extern void install_in_rank(Agraph_t *, Agnode_t *);
- extern int is_cluster(Agraph_t *);
+ extern bool is_cluster(Agraph_t *);
extern void dot_compoundEdges(Agraph_t *);
extern Agedge_t *make_aux_edge(Agnode_t *, Agnode_t *, double, int);
extern void mark_clusters(Agraph_t *);
fprintf (stderr, "Maxrank = %d, minrank = %d\n", GD_maxrank(g), GD_minrank(g));
}
-int is_cluster(graph_t * g)
+bool is_cluster(graph_t * g)
{
- //return (strncmp(agnameof(g), "cluster", 7) == 0);
return is_a_cluster(g); // from utils.c
}