]> granicus.if.org Git - graphviz/commitdiff
fixed more indentation
authorJonathan Zheng <jonathanzheng@hotmail.co.uk>
Wed, 15 Jan 2020 17:38:07 +0000 (17:38 +0000)
committerMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Sun, 5 Apr 2020 20:18:29 +0000 (22:18 +0200)
lib/common/types.h
lib/neatogen/CMakeLists.txt
lib/neatogen/neatoinit.c

index a653101dfd3c87dfdbc7c01fe663e0d9789fa509..e7da57b08d585d0368b847600eda7ecee461cdaa 100644 (file)
@@ -297,8 +297,8 @@ typedef enum {NATIVEFONTS,PSFONTS,SVGFONTS} fontname_kind;
 #ifndef DOT_ONLY
        /* to place nodes */
        node_t **neato_nlist;
-    node_t **heap;
-    int heapsize;
+       node_t **heap;
+       int heapsize;
        int move;
        double **dist;
        double **spring;
index eeac6ac82f3f3f738bb8a198aadd932cc47d8907..ffdcf6c689b14928e2dd334add2928192a56e4d9 100644 (file)
@@ -45,7 +45,7 @@ set(sources
     sparsegraph.h
     stress.h
     voronoi.h
-       sgd.h
+    sgd.h
 
     # Source files
     adjust.c
@@ -86,7 +86,7 @@ set(sources
     stuff.c
     stress.c
     voronoi.c
-       sgd.c
+    sgd.c
 )
 
 if (with_ipsepcola)
index 386e36badad4a18f84abf8d0d7ceaebd96fd2f20..2f63bb90c1189607feae7e119438639b06a878c5 100644 (file)
@@ -663,6 +663,8 @@ static int neatoMode(graph_t * g)
            mode = MODE_KK;
        else if (streq(str, "major"))
            mode = MODE_MAJOR;
+       else if (streq(str, "sgd"))
+               mode = MODE_SGD;
 #ifdef DIGCOLA
        else if (streq(str, "hier"))
            mode = MODE_HIER;
@@ -671,8 +673,6 @@ static int neatoMode(graph_t * g)
             mode = MODE_IPSEP;
 #endif
 #endif
-       else if (streq(str, "sgd"))
-               mode = MODE_SGD;
        else
            agerr(AGWARN,
                  "Illegal value %s for attribute \"mode\" in graph %s - ignored\n",
@@ -1359,11 +1359,11 @@ neatoLayout(Agraph_t * mg, Agraph_t * g, int layoutMode, int layoutModel,
     nG = scan_graph_mode(g, layoutMode);
     if ((nG < 2) || (MaxIter < 0))
        return;
-       if (layoutMode == MODE_KK)
+    if (layoutMode == MODE_KK)
        kkNeato(g, nG, layoutModel);
-       else if (layoutMode == MODE_SGD)
+    else if (layoutMode == MODE_SGD)
        sgd(g, nG, layoutModel);
-       else
+    else
        majorization(mg, g, nG, layoutMode, layoutModel, Ndim, MaxIter, am);
 }