]> granicus.if.org Git - graphviz/commitdiff
use agfindnode/agfindedge macros
authorellson <devnull@localhost>
Thu, 23 Oct 2008 20:23:55 +0000 (20:23 +0000)
committerellson <devnull@localhost>
Thu, 23 Oct 2008 20:23:55 +0000 (20:23 +0000)
lib/circogen/blockpath.c
lib/circogen/blocktree.c
lib/common/arrows.c

index 986b30640e9b9b65a3f6929ece94ce5090dc9189..888e2de88a80810a47d514503ac3625dd0087ee2 100644 (file)
@@ -154,11 +154,7 @@ static void find_pair_edges(Agraph_t * g, Agnode_t * n, Agraph_t * outg)
            n2 = aghead(ep);
            if (n2 == n)
                n2 = agtail(ep);
-#ifndef WITH_CGRAPH
            ex = agfindedge(g, n1, n2);
-#else /* WITH_CGRAPH */
-           ex = agedge(g, n1, n2, NULL, 0);
-#endif /* WITH_CGRAPH */
            if (ex) {
                has_pair_edge = 1;
                if (n1 < n2) {  /* count edge only once */
index 04b55d0d47973774e226d5546b699e274ef576bf..118462503fc049350d0999ce5c0b68c706893525 100644 (file)
@@ -205,11 +205,7 @@ static void find_blocks(Agraph_t * g, circ_state * state)
     /*      check to see if there is a node which is set to be the root
      */
     if (state->rootname) {
-#ifndef WITH_CGRAPH
        root = agfindnode(g, state->rootname);
-#else /* WITH_CGRAPH */
-       root = agnode(g, state->rootname,0);
-#endif /* WITH_CGRAPH */
     }
     if (!root && state->N_root) {
        for (n = agfstnode(g); n; n = agnxtnode(g, n)) {
index 7338b7614bb2002d6e8a39d925539e704bc66004..c77b25e68d15118ae6fb9e6a1f20450b244d6c3d 100644 (file)
@@ -213,11 +213,7 @@ void arrow_flags(Agedge_t * e, int *sflag, int *eflag)
        edge_t *f;
        int s0, e0;
        /* pick up arrowhead of opposing edge */
-#ifdef WITH_CGRAPH
-       f = agedge(agraphof(aghead(e)), aghead(e), agtail(e), (char *)NULL, FALSE);
-#else
        f = agfindedge(agraphof(aghead(e)), aghead(e), agtail(e));
-#endif
        arrow_flags(f, &s0, &e0);
        *eflag = *eflag | s0;
        *sflag = *sflag | e0;