]> granicus.if.org Git - graphviz/commitdiff
missed change
authorellson <devnull@localhost>
Tue, 18 Oct 2005 20:16:57 +0000 (20:16 +0000)
committerellson <devnull@localhost>
Tue, 18 Oct 2005 20:16:57 +0000 (20:16 +0000)
doc/info/attrs.html
lib/neatogen/neatoinit.c

index 47461bd7eda74f258775250bddf49687e1f03311..e85a1848206209db8d17e59fe9e3e54978e7d330 100644 (file)
@@ -1512,7 +1512,6 @@ the given types.
   At present, the recognized style names comprise 
   "dashed", "dotted", "solid", "invis" and "bold" for nodes and edges,
   and "filled", "diagonals" and "rounded" for nodes only.
-  The styles "filled" and "rounded" are recognized for clusters.
   Additional styles are available in
   device-dependent form. Style lists are passed to device drivers, which
   can use this to generate appropriate output.
index 2bcaec63b87404c39e93a11760e9627bd8d07088..a58c61fa3eea57b361e46a15d702a91eca1564d0 100644 (file)
@@ -745,7 +745,6 @@ static vtx_data *makeGraphData(graph_t * g, int nv, int *nedges, int mode, int m
     int haveLen;
     int haveWt;
     int haveDir;
-    int dfltConstr;
     PointMap *ps = newPM();
     int i, i_nedges, idx;
 
@@ -792,11 +791,6 @@ static vtx_data *makeGraphData(graph_t * g, int nv, int *nedges, int mode, int m
 #ifdef DIGCOLA
        if (haveDir) {
            graph[i].edists = edists++;
-               /* if g is directed, use edge direction by default
-                * if g is undirected, don't.
-                */
-           if (AG_IS_DIRECTED(g)) dfltConstr = 1;
-           else dfltConstr = 0;
        }
        else
            graph[i].edists = NULL;
@@ -828,10 +822,7 @@ static vtx_data *makeGraphData(graph_t * g, int nv, int *nedges, int mode, int m
                    *ewgts++ = 1.0;
 #ifdef DIGCOLA
                if (haveDir) {
-                   if (late_bool(ep,E_constr,dfltConstr))
                        *edists++ = (np == ep->head ? 1.0 : -1.0);
-                   else
-                       *edists++ = 0.0;
                }
 #endif
                i_nedges++;
@@ -1031,8 +1022,8 @@ majorization(graph_t * g, int nv, int mode, int model, int dim, int steps)
        coords[i] = coords[0] + i * nv;
     }
     if (Verbose) {
-       fprintf(stderr, "mode %d model %d smart_init %d iterations %d tol %f\n",
-               mode, model, (init == INIT_SELF), MaxIter, Epsilon);
+       fprintf(stderr, "model %d smart_init %d iterations %d tol %f\n",
+               model, (init == INIT_SELF), MaxIter, Epsilon);
        fprintf(stderr, "convert graph: ");
        start_timer();
     }