static void initGraphAttrs(Agraph_t * g, circ_state * state)
{
static Agraph_t *rootg;
- static attrsym_t *N_artpos;
static attrsym_t *N_root;
static attrsym_t *G_mindist;
static char *rootname;
state->blockCount = 0;
rootg = rg;
G_mindist = agattr(rootg,AGRAPH, "mindist", NULL);
- N_artpos = agattr(rootg,AGNODE, "articulation_pos", NULL);
N_root = agattr(rootg,AGNODE, "root", NULL);
}
rootname = agget(rootg, "root");
initBlocklist(&state->bl);
state->orderCount = 1;
state->min_dist = late_double(rootg, G_mindist, MINDIST, 0.0);
- state->N_artpos = N_artpos;
state->N_root = N_root;
state->rootname = rootname;
}