]> granicus.if.org Git - graphviz/commitdiff
Erroneous change.
authornorth <devnull@localhost>
Wed, 23 Jul 2008 19:25:28 +0000 (19:25 +0000)
committernorth <devnull@localhost>
Wed, 23 Jul 2008 19:25:28 +0000 (19:25 +0000)
plugin/neato_layout/gvlayout_neato_layout.c

index 81eaef2eb48f853ba3329bced5203b32b6bc6715..0c8c3d4ab7e627ccf238a9c43ca24ca4c8f1bf5a 100644 (file)
@@ -38,7 +38,6 @@ typedef enum { LAYOUT_NEATO,
                LAYOUT_CIRCO,
                LAYOUT_NOP1,
                LAYOUT_NOP2,
-               LAYOUT_PATCHWORK,
        } layout_type;
 
 extern void neato_layout(graph_t * g);
@@ -46,14 +45,12 @@ extern void fdp_layout(graph_t * g);
 extern void sfdp_layout(graph_t * g);
 extern void twopi_layout(graph_t * g);
 extern void circo_layout(graph_t * g);
-extern void patchwork_layout(graph_t * g);
 
 extern void neato_cleanup(graph_t * g);
 extern void fdp_cleanup(graph_t * g);
 extern void sfdp_cleanup(graph_t * g);
 extern void twopi_cleanup(graph_t * g);
 extern void circo_cleanup(graph_t * g);
-extern void patchwork_cleanup(graph_t * g);
 
 static void nop1_layout(graph_t * g)
 {
@@ -94,11 +91,6 @@ gvlayout_engine_t circogen_engine = {
     circo_cleanup,
 };
 
-gvlayout_engine_t patchwork_engine = {
-       patchwork_layout,
-       patchwork_cleanup,
-};
-
 gvlayout_engine_t nop1gen_engine = {
     nop1_layout,
     neato_cleanup,
@@ -121,7 +113,6 @@ gvplugin_installed_t gvlayout_neato_types[] = {
 #endif
     {LAYOUT_TWOPI, "twopi", 0, &twopigen_engine, &neatogen_features},
     {LAYOUT_CIRCO, "circo", 0, &circogen_engine, &neatogen_features},
-    {LAYOUT_PATCHWORK, "patchwork", 0, &patchwork_engine, &neatogen_features},
     {LAYOUT_NOP1, "nop", 0, &nop1gen_engine, &neatogen_features},
     {LAYOUT_NOP1, "nop1", 0, &nop1gen_engine, &neatogen_features},
     {LAYOUT_NOP1, "nop2", 0, &nop2gen_engine, &neatogen_features},