├── .gitattributes ├── .gitignore ├── .gitmodules ├── .tito ├── packages │ └── .readme └── tito.props ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── Doxyfile.in ├── LICENSE ├── Makeargs ├── Makefile.am ├── NEWS ├── README ├── README.md ├── appveyor.yml ├── autogen.sh ├── awk ├── brewer.awk ├── colortbl.awk ├── stringize.awk ├── svgcolor.awk └── typegraph.awk ├── ci ├── autotools-build_and_test.sh ├── centos7 │ └── Dockerfile └── cmake-build_and_test.sh ├── cmake ├── FindANN.cmake ├── FindAWK.cmake ├── FindCairo.cmake ├── FindGD.cmake ├── FindLTDL.cmake ├── FindNSIS.cmake ├── FindPangoCairo.cmake ├── FindRxSpencer.cmake ├── cmake_uninstall.cmake.in ├── config_checks.cmake ├── generate_color_lib.cmake.in ├── modify_cgraph_grammar.cmake.in ├── modify_cgraph_scan.cmake.in ├── modify_common_htmlparse.cmake.in ├── modify_gml2gv_gmlparse.cmake.in ├── modify_gml2gv_gmlscan.cmake.in └── package_info.cmake ├── cmd ├── CMakeLists.txt ├── Makefile.am ├── dot │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── cmap_tester.tcl │ ├── dot.1 │ ├── dot.c │ ├── dot.vcxproj │ ├── dot.vcxproj.filters │ ├── dot_builtins.c │ ├── no_builtins.c │ ├── osage.1 │ └── patchwork.1 ├── dotty │ ├── Makefile.am │ ├── dotty.1 │ ├── dotty.bsh │ ├── dotty.ksh │ ├── dotty.lefty │ ├── dotty.sh │ ├── dotty.vcxproj │ ├── dotty.vcxproj.filters │ ├── dotty_draw.lefty │ ├── dotty_edit.lefty │ ├── dotty_layout.lefty │ ├── dotty_ui.lefty │ ├── mswin32 │ │ ├── doinst │ │ ├── dotty.c │ │ └── dotty.mak │ └── notes ├── edgepaint │ ├── Makefile.am │ ├── edgepaint.1 │ ├── edgepaint.vcxproj │ ├── edgepaint.vcxproj.filters │ └── edgepaintmain.c ├── gvedit │ ├── Makefile.am │ ├── csettings.cpp │ ├── csettings.h │ ├── gvedit.1 │ ├── gvedit.pro.in │ ├── gvedit.pro.ms │ ├── gvedit.vcxproj │ ├── gvedit.vcxproj.filters │ ├── images │ │ ├── Makefile.am │ │ ├── copy.png │ │ ├── cut.png │ │ ├── export.png │ │ ├── icon.png │ │ ├── new.png │ │ ├── open.png │ │ ├── paste.png │ │ ├── run.png │ │ ├── save.png │ │ ├── save_as.png │ │ └── settings.png │ ├── imageviewer.cpp │ ├── imageviewer.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mdi.qrc │ ├── mdichild.cpp │ ├── mdichild.h │ ├── ui │ │ ├── Makefile.am │ │ ├── main.ui │ │ └── settings.ui │ └── ui_settings.h ├── gvmap │ ├── Makefile.am │ ├── cluster.1 │ ├── cluster.c │ ├── country_graph_coloring.c │ ├── country_graph_coloring.h │ ├── gvmap.1 │ ├── gvmap.c │ ├── gvmap.sh │ ├── gvmap.sh.1 │ ├── gvmap.sln │ ├── gvmap.vcxproj │ ├── gvmap.vcxproj.filters │ ├── make_map.c │ ├── make_map.h │ ├── power.c │ └── power.h ├── gvpr │ ├── Makefile.am │ ├── gvpr.1 │ ├── gvpr.vcxproj │ ├── gvpr.vcxproj.filters │ ├── gvprmain.c │ └── lib │ │ ├── Makefile.am │ │ ├── addedges │ │ ├── addranks │ │ ├── addrings │ │ ├── anon │ │ ├── attr │ │ ├── bb │ │ ├── bbox │ │ ├── binduce │ │ ├── bipart │ │ ├── chkclusters │ │ ├── chkedges │ │ ├── cliptree │ │ ├── clustg │ │ ├── col │ │ ├── collapse │ │ ├── color │ │ ├── cycle │ │ ├── dechain │ │ ├── deghist │ │ ├── deledges │ │ ├── delmulti │ │ ├── delnodes │ │ ├── depath │ │ ├── dijkstra │ │ ├── flatten │ │ ├── get-layers-list │ │ ├── group │ │ ├── histogram │ │ ├── indent │ │ ├── knbhd │ │ ├── maxdeg │ │ ├── path │ │ ├── rotate │ │ ├── scale │ │ ├── scalexy │ │ ├── span │ │ ├── topon │ │ └── treetoclust ├── lefty │ ├── LOG │ ├── Makefile.am │ ├── aix_mods │ │ ├── common.h │ │ ├── exec.c │ │ └── tbl.c │ ├── code.c │ ├── code.h │ ├── colors.txt │ ├── common.c │ ├── common.h │ ├── cs2l │ │ ├── cs2l.c │ │ └── cs2l.h │ ├── display.c │ ├── display.h │ ├── dot2l │ │ ├── Makefile.am │ │ ├── dot2l.c │ │ ├── dot2l.h │ │ ├── dotlex.c │ │ ├── dotparse.y │ │ ├── dottrie.c │ │ ├── triefa.c │ │ └── triefa.h │ ├── examples │ │ ├── Makefile.am │ │ ├── box.lefty │ │ ├── def.lefty │ │ ├── fractal.lefty │ │ ├── fractal2.lefty │ │ ├── slides.lefty │ │ └── tree.lefty │ ├── exec.c │ ├── exec.h │ ├── g.c │ ├── g.h │ ├── gfxview.c │ ├── gfxview.h │ ├── internal.c │ ├── internal.h │ ├── lefty.1 │ ├── lefty.c │ ├── lefty.psp │ ├── lefty.vcxproj │ ├── lefty.vcxproj.filters │ ├── leftyio.h │ ├── lex.c │ ├── lex.h │ ├── mem.c │ ├── mem.h │ ├── os │ │ ├── Makefile.am │ │ ├── mswin32 │ │ │ ├── Makefile.am │ │ │ ├── doinst │ │ │ ├── io.c │ │ │ └── lefty.mak │ │ └── unix │ │ │ ├── Makefile.am │ │ │ └── io.c │ ├── parse.c │ ├── parse.h │ ├── str.c │ ├── str.h │ ├── tbl.c │ ├── tbl.h │ ├── txtview.c │ ├── txtview.h │ └── ws │ │ ├── Makefile.am │ │ ├── gtk │ │ ├── garray.c │ │ ├── gbutton.c │ │ ├── gcanvas.c │ │ ├── gcommon.c │ │ ├── gcommon.h │ │ ├── glabel.c │ │ ├── gmenu.c │ │ ├── gpcanvas.c │ │ ├── gquery.c │ │ ├── gscroll.c │ │ ├── gtext.c │ │ └── gview.c │ │ ├── mswin32 │ │ ├── Makefile.am │ │ ├── garray.c │ │ ├── gbutton.c │ │ ├── gcanvas.c │ │ ├── gcommon.c │ │ ├── gcommon.h │ │ ├── glabel.c │ │ ├── gmenu.c │ │ ├── gpcanvas.c │ │ ├── gquery.c │ │ ├── gscroll.c │ │ ├── gtext.c │ │ ├── gview.c │ │ ├── lefty.rc │ │ └── resource.h │ │ ├── none │ │ ├── garray.c │ │ ├── gbutton.c │ │ ├── gcanvas.c │ │ ├── gcommon.c │ │ ├── gcommon.h │ │ ├── glabel.c │ │ ├── gmenu.c │ │ ├── gpcanvas.c │ │ ├── gquery.c │ │ ├── gscroll.c │ │ ├── gtext.c │ │ └── gview.c │ │ └── x11 │ │ ├── Makefile.am │ │ ├── garray.c │ │ ├── gbutton.c │ │ ├── gcanvas.c │ │ ├── gcommon.c │ │ ├── gcommon.h │ │ ├── glabel.c │ │ ├── gmenu.c │ │ ├── gpcanvas.c │ │ ├── gquery.c │ │ ├── gscroll.c │ │ ├── gtext.c │ │ ├── gview.c │ │ └── libfilereq │ │ ├── Dir.c │ │ ├── Draw.c │ │ ├── Makefile.am │ │ ├── Path.c │ │ ├── README.selfile │ │ ├── SF.h │ │ ├── SFDecls.h │ │ ├── SFinternal.h │ │ ├── SelFile.c │ │ └── xstat.h ├── lneato │ ├── Makefile.am │ ├── lneato.1 │ ├── lneato.bsh │ ├── lneato.ksh │ ├── lneato.sh │ ├── lneato.vcxproj │ ├── lneato.vcxproj.filters │ └── mswin32 │ │ ├── doinst │ │ ├── lneato.c │ │ └── lneato.mak ├── mingle │ ├── Makefile.am │ ├── mingle.1 │ ├── mingle.vcxproj │ ├── mingle.vcxproj.filters │ └── minglemain.c ├── smyrna │ ├── Makefile.am │ ├── TODO │ ├── arcball.c │ ├── arcball.h │ ├── btree.c │ ├── btree.h │ ├── draw.c │ ├── draw.h │ ├── drawxdot.h │ ├── filter.c │ ├── filter.h │ ├── glexpose.c │ ├── glexpose.h │ ├── glmotion.c │ ├── glmotion.h │ ├── gltemplate.c │ ├── gltemplate.h │ ├── glutrender.c │ ├── glutrender.h │ ├── gui │ │ ├── appmouse.c │ │ ├── appmouse.h │ │ ├── callbacks.c │ │ ├── callbacks.h │ │ ├── datalistcallbacks.c │ │ ├── datalistcallbacks.h │ │ ├── filterscallbacks.h │ │ ├── frmobjectui.c │ │ ├── frmobjectui.h │ │ ├── glcompui.c │ │ ├── glcompui.h │ │ ├── gui.c │ │ ├── gui.h │ │ ├── menucallbacks.c │ │ ├── menucallbacks.h │ │ ├── smyrna.glade │ │ ├── toolboxcallbacks.c │ │ ├── toolboxcallbacks.h │ │ ├── topviewsettings.c │ │ └── topviewsettings.h │ ├── gvprpipe.c │ ├── gvprpipe.h │ ├── hier.c │ ├── hier.h │ ├── hotkeymap.c │ ├── hotkeymap.h │ ├── leopard_osx_hack │ ├── main.c │ ├── materials.h │ ├── md5.c │ ├── md5.h │ ├── polytess.c │ ├── polytess.h │ ├── punchlist.txt │ ├── selectionfuncs.c │ ├── selectionfuncs.h │ ├── smyrna.1 │ ├── smyrna.vcxproj │ ├── smyrna.vcxproj.filters │ ├── smyrna_utils.c │ ├── smyrna_utils.h │ ├── smyrnadefs.h │ ├── support.c │ ├── support.h │ ├── topfisheyeview.c │ ├── topfisheyeview.h │ ├── topviewdata.c │ ├── topviewdata.h │ ├── topviewdefs.h │ ├── topviewfuncs.c │ ├── topviewfuncs.h │ ├── trackball.c │ ├── trackball.h │ ├── tvnodes.c │ ├── tvnodes.h │ ├── viewport.c │ ├── viewport.h │ ├── viewportcamera.c │ └── viewportcamera.h └── tools │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── acyclic.1 │ ├── acyclic.c │ ├── acyclic.vcxproj │ ├── acyclic.vcxproj.filters │ ├── bcomps.1 │ ├── bcomps.c │ ├── bcomps.vcxproj │ ├── bcomps.vcxproj.filters │ ├── ccomps.1 │ ├── ccomps.c │ ├── ccomps.vcxproj │ ├── ccomps.vcxproj.filters │ ├── colortbl.h │ ├── colxlate.c │ ├── convert.h │ ├── cvtgxl.c │ ├── dijkstra.1 │ ├── dijkstra.c │ ├── dijkstra.vcxproj │ ├── dijkstra.vcxproj.filters │ ├── gc.1 │ ├── gc.c │ ├── gc.vcxproj │ ├── gc.vcxproj.filters │ ├── gml2gv.1 │ ├── gml2gv.c │ ├── gml2gv.h │ ├── gml2gv.ncb │ ├── gml2gv.sln │ ├── gml2gv.vcxproj │ ├── gml2gv.vcxproj.filters │ ├── gmlparse.y │ ├── gmlscan.l │ ├── graph_generator.c │ ├── graph_generator.h │ ├── graphml2gv.1 │ ├── graphml2gv.c │ ├── graphml2gv.vcxproj │ ├── graphml2gv.vcxproj.filters │ ├── gv2gml.c │ ├── gv2gml.vcxproj │ ├── gv2gml.vcxproj.filters │ ├── gv2gxl.c │ ├── gvcolor.1 │ ├── gvcolor.c │ ├── gvcolor.vcxproj │ ├── gvcolor.vcxproj.filters │ ├── gvgen.1 │ ├── gvgen.c │ ├── gvgen.vcxproj │ ├── gvgen.vcxproj.filters │ ├── gvpack.1 │ ├── gvpack.c │ ├── gvpack.vcxproj │ ├── gvpack.vcxproj.filters │ ├── gvpack_builtins.c │ ├── gxl2gv.1 │ ├── gxl2gv.c │ ├── gxl2gv.vcxproj │ ├── gxl2gv.vcxproj.filters │ ├── matrix_market.c │ ├── matrix_market.h │ ├── mm2gv.1 │ ├── mm2gv.c │ ├── mm2gv.vcxproj │ ├── mm2gv.vcxproj.filters │ ├── mmio.c │ ├── mmio.h │ ├── nop.1 │ ├── nop.c │ ├── nop.vcxproj │ ├── nop.vcxproj.filters │ ├── sccmap.1 │ ├── sccmap.c │ ├── sccmap.vcxproj │ ├── sccmap.vcxproj.filters │ ├── tred.1 │ ├── tred.c │ ├── tred.vcxproj │ ├── tred.vcxproj.filters │ ├── tred2.c │ ├── unflatten.1 │ ├── unflatten.c │ ├── unflatten.vcxproj │ └── unflatten.vcxproj.filters ├── compat.h ├── config-cmake.h.in ├── config.iffe ├── config ├── config.rpath ├── config_perl.pl ├── config_python.py ├── config_ruby.rb └── config_tcl.tcl ├── configure.ac ├── contrib ├── INDEX ├── Makefile.am ├── diffimg │ ├── Makefile.am │ ├── diffimg.1 │ ├── diffimg.c │ ├── diffimg.vcxproj │ └── diffimg.vcxproj.filters ├── dirgraph │ ├── README │ ├── apache.dot │ ├── bsdarch.dot │ ├── bsdkernel.dot │ ├── dirgraph.pl │ ├── linux.dot │ └── named.dot ├── dotmcl.pl ├── gprof2dot.awk ├── java-dot │ ├── dot │ │ ├── DotAttr.java │ │ ├── DotAttrNames.java │ │ ├── DotAttrValues.java │ │ ├── DotAttributes.java │ │ ├── DotCluster.java │ │ ├── DotColorAttr.java │ │ ├── DotCommentedAttr.java │ │ ├── DotEdge.java │ │ ├── DotEdgeAttr.java │ │ ├── DotGraph.java │ │ ├── DotGraphAttr.java │ │ ├── DotGraphRotateAttr.java │ │ ├── DotGraphSizeAttr.java │ │ ├── DotLabelAttr.java │ │ ├── DotNode.java │ │ ├── DotNodeAttr.java │ │ └── DotStringAttr.java │ ├── example │ │ └── SimpleGraph.java │ ├── license.txt │ ├── sample.dot-orig │ └── uml.dot ├── lefty-grace │ ├── README │ ├── dotty.lefty │ ├── dotty_draw.lefty │ ├── dotty_edit.lefty │ └── dotty_ui.lefty ├── pangotest │ ├── Makefile │ └── pangotest.c ├── prune │ ├── Makefile.am │ ├── README │ ├── generic_list.c │ ├── generic_list.h │ ├── prune.1 │ ├── prune.c │ ├── prune.vcxproj │ ├── prune.vcxproj.filters │ └── test.gv ├── sdlshapes │ ├── README │ ├── sdl.ps │ └── sdlshapes.dot └── webdot.cgi ├── cpl1.0.txt ├── debian ├── README.Debian ├── README.Debian-packaging ├── README.source ├── TODO ├── changelog.in ├── compat ├── control ├── copyright ├── graphviz-doc.doc-base ├── graphviz-doc.install ├── graphviz.install ├── graphviz.menu ├── libgraphviz-config-update.pod.in ├── libgraphviz-dev.install ├── libgraphviz4.install ├── libgraphviz4.lintian-overrides ├── libgraphviz4.postinst ├── libgraphviz4.postrm ├── libgv-guile.install ├── libgv-lua.install ├── libgv-ocaml.install ├── libgv-perl.install ├── libgv-php5.install ├── libgv-python.install ├── libgv-ruby.install ├── libgv-tcl.install ├── patches │ └── series ├── pyversions ├── rules └── watch.in ├── developers ├── distro_notes.txt ├── doc ├── Dot.ref ├── FAQ.html ├── Makefile.am ├── addingLayout.txt ├── build.html ├── char.html ├── docbook │ ├── Makefile │ └── src │ │ ├── book.xml │ │ ├── bookinfo.xml │ │ ├── graphviz_plugins.xml │ │ ├── graphviz_scripting.xml │ │ └── imgs │ │ ├── Txlib.png │ │ ├── framework.png │ │ ├── framework.svg │ │ ├── hello_cairo.png │ │ └── hello_gd.png ├── dotguide.pdf ├── dotguide │ ├── Makefile │ ├── Mcircle.dot │ ├── Mdiamond.dot │ ├── Mrecord.dot │ ├── Msquare.dot │ ├── asde91.dot │ ├── box.dot │ ├── boxarrow.dot │ ├── circle.dot │ ├── clust1.dot │ ├── clust2.dot │ ├── color_list │ ├── compound.dot │ ├── constraint.dot │ ├── crow.dot │ ├── curve.dot │ ├── diamond.dot │ ├── diamondarrow.dot │ ├── dot.dot │ ├── dotguide.tex │ ├── doublecircle.dot │ ├── doubleoctagon.dot │ ├── egg.dot │ ├── ellipse.dot │ ├── fsm.dot │ ├── graph1.dot │ ├── graph2.dot │ ├── graphdraw.bib │ ├── hashtable.dot │ ├── hexagon.dot │ ├── house.dot │ ├── html.dot │ ├── icurve.dot │ ├── inv.dot │ ├── invdot.dot │ ├── invhouse.dot │ ├── invodot.dot │ ├── invtrapezium.dot │ ├── invtriangle.dot │ ├── ndotguide.tex │ ├── no_arrow.dot │ ├── none.dot │ ├── normal.dot │ ├── octagon.dot │ ├── odot.dot │ ├── oinvdot.dot │ ├── parallelogram.dot │ ├── plaintext.dot │ ├── point.dot │ ├── poly.dot │ ├── polygon.dot │ ├── record.dot │ ├── recordex.dot │ ├── smlred.dot │ ├── structs.dot │ ├── tee.dot │ ├── tmsize10.clo │ ├── trapezium.dot │ ├── tree.dot │ ├── triangle.dot │ ├── tripleoctagon.dot │ └── vee.dot ├── dotty │ ├── Makefile │ ├── figs │ │ ├── Makefile │ │ ├── d1.xwd.gz │ │ ├── d2.xwd.gz │ │ ├── d3.xwd.gz │ │ ├── d4.xwd.gz │ │ ├── d5.xwd.gz │ │ ├── d6.xwd.gz │ │ ├── d7.xwd.gz │ │ ├── d8.xwd.gz │ │ ├── dotty.xwd.gz │ │ ├── fa1.xwd.gz │ │ ├── fa2.xwd.gz │ │ └── ldbx.ppm.gz │ ├── full.tex │ ├── head.tex │ ├── progs │ │ └── progfa.tex │ ├── sec1.tex │ ├── sec2.tex │ ├── sec3.tex │ ├── sec4.tex │ ├── sec5.tex │ ├── seca.tex │ ├── secb.tex │ ├── section1.tex │ ├── section2.tex │ ├── section3.tex │ ├── section4.tex │ ├── section5.tex │ ├── sectiona.tex │ ├── sectionb.tex │ └── tail.tex ├── dottyguide.pdf ├── fontfaq.txt ├── gdtclft.entities.example.png ├── index.html ├── info │ ├── Makefile.am │ ├── Mcircle.gif │ ├── Mdiamond.gif │ ├── Msquare.gif │ ├── a_box.gif │ ├── a_crow.gif │ ├── a_curve.gif │ ├── a_diamond.gif │ ├── a_dot.gif │ ├── a_ediamond.gif │ ├── a_empty.gif │ ├── a_forward.dot │ ├── a_forward.gif │ ├── a_halfopen.gif │ ├── a_icurve.gif │ ├── a_inv.gif │ ├── a_invdot.gif │ ├── a_invempty.gif │ ├── a_invodot.gif │ ├── a_lteeoldiamond.gif │ ├── a_nohead.dot │ ├── a_nohead.gif │ ├── a_none.gif │ ├── a_normal.gif │ ├── a_obox.gif │ ├── a_odiamond.gif │ ├── a_odot.gif │ ├── a_open.gif │ ├── a_tee.gif │ ├── aa_box.gif │ ├── aa_crow.gif │ ├── aa_curve.gif │ ├── aa_diamond.gif │ ├── aa_dot.gif │ ├── aa_icurve.gif │ ├── aa_inv.gif │ ├── aa_lbox.gif │ ├── aa_lcrow.gif │ ├── aa_lcurve.gif │ ├── aa_ldiamond.gif │ ├── aa_licurve.gif │ ├── aa_linv.gif │ ├── aa_lnormal.gif │ ├── aa_ltee.gif │ ├── aa_lvee.gif │ ├── aa_none.gif │ ├── aa_normal.gif │ ├── aa_obox.gif │ ├── aa_odiamond.gif │ ├── aa_odot.gif │ ├── aa_oinv.gif │ ├── aa_olbox.gif │ ├── aa_oldiamond.gif │ ├── aa_olinv.gif │ ├── aa_olnormal.gif │ ├── aa_onormal.gif │ ├── aa_orbox.gif │ ├── aa_ordiamond.gif │ ├── aa_orinv.gif │ ├── aa_ornormal.gif │ ├── aa_rbox.gif │ ├── aa_rcrow.gif │ ├── aa_rcurve.gif │ ├── aa_rdiamond.gif │ ├── aa_ricurve.gif │ ├── aa_rinv.gif │ ├── aa_rnormal.gif │ ├── aa_rtee.gif │ ├── aa_rvee.gif │ ├── aa_tee.gif │ ├── aa_vee.gif │ ├── arrowgen.tcl │ ├── arrows.html │ ├── assembly.gif │ ├── attrs.html │ ├── back.gif │ ├── both.gif │ ├── box.gif │ ├── box3d.gif │ ├── c_bold.png │ ├── c_dashed.png │ ├── c_dotted.png │ ├── c_filled.png │ ├── c_rounded.png │ ├── c_solid.png │ ├── c_striped.png │ ├── cds.gif │ ├── circle.gif │ ├── colorlist.gif │ ├── colors.html │ ├── command.html │ ├── component.gif │ ├── constraint.gif │ ├── cylinder.gif │ ├── diamond.gif │ ├── doublecircle.gif │ ├── doubleoctagon.gif │ ├── e_bold.png │ ├── e_dashed.png │ ├── e_dotted.png │ ├── e_solid.png │ ├── egg.gif │ ├── ellipse.gif │ ├── fill.gif │ ├── fivepoverhang.gif │ ├── fixed.gif │ ├── folder.gif │ ├── forward.gif │ ├── g_lin0.png │ ├── g_lin180.png │ ├── g_lin270.png │ ├── g_lin360.png │ ├── g_lin45.png │ ├── g_lin90.png │ ├── g_rad0.png │ ├── g_rad180.png │ ├── g_rad270.png │ ├── g_rad360.png │ ├── g_rad45.png │ ├── g_rad90.png │ ├── g_wlin0.png │ ├── g_wlin180.png │ ├── g_wlin270.png │ ├── g_wlin360.png │ ├── g_wlin45.png │ ├── g_wlin90.png │ ├── graphviz_json_schema.json │ ├── hexagon.gif │ ├── house.gif │ ├── html1.gif │ ├── html2.gif │ ├── html2.gv │ ├── html3.gif │ ├── html3.gv │ ├── html4.gif │ ├── html4.gv │ ├── index.html │ ├── insulator.gif │ ├── invhouse.gif │ ├── invtrapezium.gif │ ├── invtriangle.gif │ ├── lang.html │ ├── larrow.gif │ ├── lpromoter.gif │ ├── mrecord.gif │ ├── n_bold.png │ ├── n_dashed.png │ ├── n_diagonals.png │ ├── n_dotted.png │ ├── n_filled.png │ ├── n_rounded.png │ ├── n_solid.png │ ├── n_striped.png │ ├── n_wedged.png │ ├── nohead.gif │ ├── none.gif │ ├── none_back.png │ ├── none_both.png │ ├── none_forward.png │ ├── none_none.png │ ├── normal_back.png │ ├── normal_both.png │ ├── normal_forward.png │ ├── normal_none.png │ ├── note.gif │ ├── noverhang.gif │ ├── octagon.gif │ ├── output.html │ ├── oval.gif │ ├── parallelogram.gif │ ├── pentagon.gif │ ├── plain.gif │ ├── plaintext.gif │ ├── plugins.png │ ├── point.gif │ ├── polygon.gif │ ├── primersite.gif │ ├── promoter.gif │ ├── proteasesite.gif │ ├── proteinstab.gif │ ├── rarrow.gif │ ├── record.gif │ ├── record2.gif │ ├── rect.gif │ ├── rectangle.gif │ ├── restrictionsite.gif │ ├── ribosite.gif │ ├── rnastab.gif │ ├── round.gif │ ├── rpromoter.gif │ ├── schema.html │ ├── sdlshapes.jpg │ ├── sdlshapes.png │ ├── septagon.gif │ ├── shapegen.tcl │ ├── shapes.html │ ├── signature.gif │ ├── spline_curved.png │ ├── spline_line.png │ ├── spline_none.png │ ├── spline_ortho.png │ ├── spline_polyline.png │ ├── spline_spline.png │ ├── square.gif │ ├── star.gif │ ├── tab.gif │ ├── tee.gif │ ├── terminator.gif │ ├── threepoverhang.gif │ ├── trapezium.gif │ ├── triangle.gif │ ├── tripleoctagon.gif │ ├── underline.gif │ ├── utr.gif │ └── w3data.js ├── infosrc │ ├── Makefile │ ├── arrow_grammar │ ├── arrows.1 │ ├── arrows.2 │ ├── attrs │ ├── attrs.1 │ ├── back.dot │ ├── both.dot │ ├── brewer.awk │ ├── colorlist.dot │ ├── colors.1 │ ├── colors.n │ ├── command.html │ ├── constraint.dot │ ├── eqn.gif │ ├── eqn.png │ ├── fill.dot │ ├── fixed.gv │ ├── forward.dot │ ├── grammar │ ├── graphviz_json_schema.json │ ├── html.1 │ ├── html.2 │ ├── html.3 │ ├── html1.dot │ ├── html2.gv │ ├── html3.gv │ ├── html4.gv │ ├── html_grammar │ ├── jconvert.py │ ├── lang.1 │ ├── lang.2 │ ├── mkarrows.sh │ ├── mkarrowtbl.sh │ ├── mkattrs.sh │ ├── mkcolors.awk │ ├── mkgrads.sh │ ├── mklang.y │ ├── mkoutput.sh │ ├── mkshapes.sh │ ├── mkshhtml.sh │ ├── mksplines.sh │ ├── mkstyles.sh │ ├── mktapers.sh │ ├── mktypes.sh │ ├── mrecord.dot │ ├── nohead.dot │ ├── output.1 │ ├── output.2 │ ├── outputs │ ├── plugins.gv │ ├── plugins.png │ ├── ps_to_jpg.sh │ ├── ps_to_png.sh │ ├── record.dot │ ├── round.dot │ ├── sdl.ps │ ├── sdlshapes.dot │ ├── shapelist │ ├── shapes.1 │ ├── shapes.2 │ ├── shapes.3 │ ├── svg.awk │ ├── sz.awk │ ├── tee.gv │ ├── types │ └── w3data.js ├── internal_todo.html ├── latex_suggestions.txt ├── lefty │ ├── Makefile │ ├── figs │ │ ├── Makefile │ │ ├── box.lefty │ │ ├── fig2tpa.lefty │ │ ├── fig2tpb.lefty │ │ ├── figbigtree.lefty │ │ ├── figboxfinal.lefty │ │ ├── figboxinitial.lefty │ │ ├── figdag.lefty │ │ ├── figfractalmva.lefty │ │ ├── figfractalmvb.lefty │ │ ├── figfractalonea.lefty │ │ ├── figfractaloneb.lefty │ │ ├── figfractaltracea.lefty │ │ ├── figfractaltraceb.lefty │ │ ├── figfractaltracec.lefty │ │ ├── figradixtree.lefty │ │ ├── figtria.lefty │ │ ├── figtrib.lefty │ │ ├── lefty.ppm.gz │ │ └── train11.dot │ ├── full.tex │ ├── head.tex │ ├── progs │ │ ├── progbox.tex │ │ ├── progboxdops.tex │ │ ├── progboxdraw.tex │ │ ├── progboxdsfinal.tex │ │ ├── progboxdsinitial.tex │ │ ├── progboxedit.tex │ │ ├── progboxui.tex │ │ └── progtri.tex │ ├── sec1.tex │ ├── sec2.tex │ ├── sec3.tex │ ├── sec4.tex │ ├── sec5.tex │ ├── seca.tex │ ├── secb.tex │ ├── secc.tex │ ├── section1.tex │ ├── section2.tex │ ├── section3.tex │ ├── section4.tex │ ├── section5.tex │ ├── sectiona.tex │ ├── sectionb.tex │ ├── sectionc.tex │ └── tail.tex ├── leftyguide.pdf ├── libgraph │ ├── Agraph.pdf │ ├── Agraph.tex │ ├── Makefile │ ├── agmemread.c │ ├── agmemread.tex │ ├── lgrind.sty │ ├── sccmap.c │ └── sccmap.tex ├── libguide │ ├── Makefile │ ├── basic.tex │ ├── build.tex │ ├── codegen.tex │ ├── drivers.tex │ ├── graphdraw.bib │ ├── intro.tex │ ├── layouts.tex │ ├── libguide.pdf │ ├── libguide.tex │ ├── overlap.tex │ ├── paths.tex │ ├── plugins.tex │ ├── samples.tex │ ├── types.tex │ └── unconnect.tex ├── neato │ ├── ER.dot │ ├── G4_lenwt.dot │ ├── G4_orig.dot │ ├── G4_pinned.dot │ ├── Makefile │ ├── fancy.dot │ ├── inet.dot │ ├── jho.dot │ ├── neato.tex │ ├── process.dot │ └── typeshar.dot ├── neatoguide.pdf ├── odt │ ├── graphviz_plugins.odt │ └── graphviz_plugins.pdf ├── oldlibguide.pdf ├── pspdf.png ├── schema │ ├── Makefile.am │ ├── arguments.xml │ ├── attributes.xml │ └── attributes.xslt ├── smyrna │ ├── Makefile │ ├── attributes.tex │ ├── controls.tex │ ├── figures │ │ ├── 2D.png │ │ ├── 3D.png │ │ ├── attr1.png │ │ ├── attr2.png │ │ ├── attr3.png │ │ ├── attr4.png │ │ ├── center.png │ │ ├── details.png │ │ ├── fisheye.png │ │ ├── general.png │ │ ├── graph.png │ │ ├── gvpr.png │ │ ├── labels.png │ │ ├── magnifier.png │ │ ├── no_fisheye.png │ │ ├── nodelist.png │ │ ├── pan.png │ │ ├── smyrna.png │ │ ├── topfish.png │ │ ├── zoomin.png │ │ └── zoomout.png │ ├── gui.tex │ ├── intro.tex │ ├── smyrna.pdf │ ├── smyrna.tex │ └── using.tex ├── todo.html └── winbuild.html ├── dot.demo ├── Makefile ├── Makefile.builtins ├── Makefile.python_wrapper ├── Makefile.python_wrapper_builtins ├── demo.c ├── demo.vcproj ├── dot.c ├── dot_demo.vcproj ├── example.c ├── gv_test.py ├── neatopack.c └── simple.c ├── epl-v10.html ├── epl-v10.txt ├── epl_inserter.tcl ├── graphs ├── Makefile.am ├── directed │ ├── KW91.gv │ ├── Latin1.gv │ ├── Makefile.am │ ├── NaN.gv │ ├── abstract.gv │ ├── alf.gv │ ├── arr_none.gv │ ├── arrows.gv │ ├── awilliams.gv │ ├── biological.gv │ ├── clust.gv │ ├── clust1.gv │ ├── clust2.gv │ ├── clust3.gv │ ├── clust4.gv │ ├── clust5.gv │ ├── crazy.gv │ ├── ctext.gv │ ├── dfa.gv │ ├── fig6.gv │ ├── fsm.gv │ ├── grammar.gv │ ├── hashtable.gv │ ├── honda-tokoro.gv │ ├── japanese.gv │ ├── jcctree.gv │ ├── jsort.gv │ ├── ldbxtried.gv │ ├── longflat.gv │ ├── mike.gv │ ├── nhg.gv │ ├── oldarrows.gv │ ├── pgram.gv │ ├── pm2way.gv │ ├── pmpipe.gv │ ├── polypoly.gv │ ├── proc3d.gv │ ├── psfonttest.gv │ ├── record2.gv │ ├── records.gv │ ├── rowe.gv │ ├── russian.gv │ ├── sdh.gv │ ├── shells.gv │ ├── states.gv │ ├── structs.gv │ ├── switch.gv │ ├── table.gv │ ├── train11.gv │ ├── trapeziumlr.gv │ ├── tree.gv │ ├── triedds.gv │ ├── try.gv │ ├── unix.gv │ ├── unix2.gv │ ├── viewfile.gv │ └── world.gv └── undirected │ ├── ER.gv │ ├── Heawood.gv │ ├── Makefile.am │ ├── Petersen.gv │ ├── ngk10_4.gv │ └── process.gv ├── graphviz.7 ├── graphviz.appdata.xml ├── graphviz.sln ├── graphviz.spec ├── graphviz_version.h.cmake ├── iffe ├── index.html ├── lib ├── CMakeLists.txt ├── Makefile.am ├── agraph │ ├── Makefile.am │ ├── README │ ├── agerror.c │ ├── aghdr.h │ ├── agraph.3 │ ├── agraph.h │ ├── apply.c │ ├── attr.c │ ├── cmpnd.c │ ├── dotdge.c │ ├── edge.c │ ├── flatten.c │ ├── grammar.y │ ├── graph.c │ ├── id.c │ ├── imap.c │ ├── io.c │ ├── libagraph.pc.in │ ├── main.c │ ├── malloc.h │ ├── mem.c │ ├── node.c │ ├── obj.c │ ├── pend.c │ ├── rec.c │ ├── refstr.c │ ├── scan.l │ ├── subg.c │ ├── tester.c │ ├── utils.c │ ├── vmstub.h │ └── write.c ├── agutil │ ├── Makefile.am │ ├── agutil.h │ ├── agutil.vcproj │ ├── dynattr.c │ └── nodeq.c ├── ast │ ├── Makefile.am │ ├── align.h │ ├── ast.h │ ├── ast.vcxproj │ ├── ast.vcxproj.filters │ ├── chresc.c │ ├── chrtoi.c │ ├── compat_unistd.h │ ├── error.c │ ├── error.h │ ├── fmtbuf.c │ ├── fmtesc.c │ ├── hashkey.h │ ├── pathaccess.c │ ├── pathbin.c │ ├── pathcanon.c │ ├── pathcat.c │ ├── pathexists.c │ ├── pathfind.c │ ├── pathgetlink.c │ ├── pathpath.c │ ├── sfstr.h │ ├── strcopy.c │ ├── stresc.c │ ├── strmatch.c │ └── strton.c ├── cdt │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README │ ├── cdt.3 │ ├── cdt.h │ ├── cdt.vcxproj │ ├── cdt.vcxproj.filters │ ├── dtclose.c │ ├── dtdisc.c │ ├── dtextract.c │ ├── dtflatten.c │ ├── dthash.c │ ├── dthdr.h │ ├── dtlist.c │ ├── dtmethod.c │ ├── dtopen.c │ ├── dtrenew.c │ ├── dtrestore.c │ ├── dtsize.c │ ├── dtstat.c │ ├── dtstrhash.c │ ├── dttree.c │ ├── dtview.c │ ├── dtwalk.c │ └── libcdt.pc.in ├── cgraph │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── agerror.c │ ├── agxbuf.c │ ├── agxbuf.h │ ├── apply.c │ ├── attr.c │ ├── cghdr.h │ ├── cgraph.3 │ ├── cgraph.h │ ├── cgraph.vcxproj │ ├── cgraph.vcxproj.filters │ ├── cmpnd.c │ ├── edge.c │ ├── flatten.c │ ├── grammar.y │ ├── graph.c │ ├── id.c │ ├── imap.c │ ├── io.c │ ├── libcgraph.pc.in │ ├── main.c │ ├── main1.c │ ├── main2.c │ ├── main3.c │ ├── malloc.h │ ├── mem.c │ ├── node.c │ ├── obj.c │ ├── pend.c │ ├── rec.c │ ├── refstr.c │ ├── scan.l │ ├── subg.c │ ├── tester.c │ ├── utils.c │ └── write.c ├── circogen │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── block.c │ ├── block.h │ ├── blockpath.c │ ├── blockpath.h │ ├── blocktree.c │ ├── blocktree.h │ ├── circo.h │ ├── circpos.c │ ├── circpos.h │ ├── circular.c │ ├── circular.h │ ├── circularinit.c │ ├── deglist.c │ ├── deglist.h │ ├── edgelist.c │ ├── edgelist.h │ ├── gvcircogen.vcxproj │ ├── gvcircogen.vcxproj.filters │ ├── nodelist.c │ ├── nodelist.h │ ├── nodeset.c │ ├── nodeset.h │ ├── stack.c │ └── stack.h ├── common │ ├── .indent.pro │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README.imap │ ├── args.c │ ├── arith.h │ ├── arrows.c │ ├── brewer_colors │ ├── chars.tcl │ ├── color.h │ ├── color_names │ ├── colorprocs.h │ ├── colxlate.c │ ├── const.h │ ├── diagen.c │ ├── ellipse.c │ ├── emit.c │ ├── entities.h │ ├── entities.html │ ├── entities.tcl │ ├── fontmap.cfg │ ├── geom.c │ ├── geom.h │ ├── geomprocs.h │ ├── globals.c │ ├── globals.h │ ├── glyphwidth.ps │ ├── hpglgen.c │ ├── htmllex.c │ ├── htmllex.h │ ├── htmlparse.y │ ├── htmltable.c │ ├── htmltable.h │ ├── input.c │ ├── intset.c │ ├── intset.h │ ├── labels.c │ ├── logic.h │ ├── macros.h │ ├── memory.c │ ├── memory.h │ ├── mifgen.c │ ├── mksvgfonts.pl │ ├── mpgen.c │ ├── ns.c │ ├── output.c │ ├── picgen.c │ ├── pointset.c │ ├── pointset.h │ ├── postproc.c │ ├── ps_font_equiv.txt │ ├── ps_fontmap.txt │ ├── psusershape.c │ ├── render.h │ ├── routespl.c │ ├── shapes.c │ ├── splines.c │ ├── strcasecmp.c │ ├── strncasecmp.c │ ├── svgcolor_names │ ├── taper.c │ ├── textspan.c │ ├── textspan.h │ ├── timing.c │ ├── timing.h │ ├── types.h │ ├── usershape.h │ ├── utils.c │ ├── utils.h │ └── vtxgen.c ├── dotgen │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README.imap │ ├── acyclic.c │ ├── aspect.c │ ├── aspect.h │ ├── class1.c │ ├── class2.c │ ├── cluster.c │ ├── compound.c │ ├── conc.c │ ├── decomp.c │ ├── dot.h │ ├── dotinit.c │ ├── dotprocs.h │ ├── dotsplines.c │ ├── fastgr.c │ ├── flat.c │ ├── gvdotgen.vcxproj │ ├── gvdotgen.vcxproj.filters │ ├── mincross.c │ ├── position.c │ ├── rank.c │ └── sameport.c ├── dotgen2 │ ├── Makefile.am │ ├── acyclic.c │ ├── au_.c │ ├── au_.h │ ├── bjm.c │ ├── bjm0.c │ ├── ce.c │ ├── countx.c │ ├── decomp.c │ ├── dot2.h │ ├── dot2procs.h │ ├── dotinit.c │ ├── flat.c │ ├── groups.c │ ├── groups.h │ ├── level.c │ ├── main.c │ ├── minc.c │ ├── minc.h │ ├── minc2.c │ ├── minc_utils.c │ ├── newdot.h │ ├── ns.c │ ├── pos.c │ ├── queue.c │ ├── radix.c │ ├── radix.h │ ├── radix0.c │ ├── radix1.c │ ├── save2_minc.c │ ├── save_minc.c │ ├── t.c │ ├── t1.c │ ├── t2.c │ ├── timing.c │ ├── trysort.c │ ├── xcoord.c │ └── xpos.c ├── edgepaint │ ├── Makefile.am │ ├── edge_distinct_coloring.c │ ├── edge_distinct_coloring.h │ ├── edgepaintlib.vcxproj │ ├── edgepaintlib.vcxproj.filters │ ├── furtherest_point.c │ ├── furtherest_point.h │ ├── intersection.c │ ├── intersection.h │ ├── lab.c │ ├── lab.h │ ├── lab_gamut.3 │ ├── lab_gamut.c │ ├── lab_gamut.def │ ├── lab_gamut.h │ ├── lab_gamut.vcxproj │ ├── lab_gamut.vcxproj.filters │ ├── liblab_gamut.pc.in │ ├── node_distinct_coloring.c │ └── node_distinct_coloring.h ├── expr │ ├── Makefile.am │ ├── Makefile.nmake │ ├── Makefile.orig │ ├── excc.c │ ├── excontext.c │ ├── exdata.c │ ├── exerror.c │ ├── exeval.c │ ├── exexpr.c │ ├── exgram.h │ ├── exlexname.c │ ├── exlib.h │ ├── exnospace.c │ ├── exopen.c │ ├── exparse.y │ ├── expr.3 │ ├── expr.h │ ├── expr.vcxproj │ ├── expr.vcxproj.filters │ ├── exrewind.c │ ├── exstash.c │ ├── extoken.c │ ├── extype.c │ ├── exzero.c │ └── libexpr.pc.in ├── fdpgen │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── clusteredges.c │ ├── clusteredges.h │ ├── comp.c │ ├── comp.h │ ├── dbg.c │ ├── dbg.h │ ├── fdp.h │ ├── fdpinit.c │ ├── grid.c │ ├── grid.h │ ├── gvfdpgen.vcxproj │ ├── gvfdpgen.vcxproj.filters │ ├── layout.c │ ├── tlayout.c │ ├── tlayout.h │ ├── xlayout.c │ └── xlayout.h ├── glcomp │ ├── Makefile.am │ ├── glCompTrackBar.c │ ├── glCompTrackBar.h │ ├── glcomp.vcxproj │ ├── glcomp.vcxproj.filters │ ├── glcompbutton.c │ ├── glcompbutton.h │ ├── glcompdefs.h │ ├── glcompfont.c │ ├── glcompfont.h │ ├── glcompimage.c │ ├── glcompimage.h │ ├── glcomplabel.c │ ├── glcomplabel.h │ ├── glcompmouse.c │ ├── glcompmouse.h │ ├── glcomppanel.c │ ├── glcomppanel.h │ ├── glcompset.c │ ├── glcompset.h │ ├── glcomptext.c │ ├── glcomptext.h │ ├── glcomptextpng.c │ ├── glcomptextpng.h │ ├── glcomptexture.c │ ├── glcomptexture.h │ ├── glpangofont.c │ ├── glpangofont.h │ ├── glutils.c │ └── glutils.h ├── graph │ ├── Makefile.am │ ├── agxbuf.c │ ├── agxbuf.h │ ├── attribs.c │ ├── edge.c │ ├── graph.3 │ ├── graph.c │ ├── graph.def │ ├── graph.h │ ├── graph.vcproj │ ├── graphio.c │ ├── lexer.c │ ├── libgraph.h │ ├── libgraph.pc.in │ ├── node.c │ ├── parser.y │ ├── refstr.c │ ├── trie.c │ ├── triefa.cP │ └── triefa.h ├── gvc.def ├── gvc.vcxproj ├── gvc.vcxproj.filters ├── gvc │ ├── .indent.pro │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README.lifecycles │ ├── gvbuffstderr.c │ ├── gvc.3 │ ├── gvc.c │ ├── gvc.def │ ├── gvc.h │ ├── gvcext.h │ ├── gvcint.h │ ├── gvcjob.h │ ├── gvcommon.h │ ├── gvconfig.c │ ├── gvconfig.h │ ├── gvcontext.c │ ├── gvcproc.h │ ├── gvdevice.c │ ├── gvevent.c │ ├── gvio.h │ ├── gvjobs.c │ ├── gvlayout.c │ ├── gvloadimage.c │ ├── gvplugin.c │ ├── gvplugin.h │ ├── gvplugin_device.h │ ├── gvplugin_layout.h │ ├── gvplugin_loadimage.h │ ├── gvplugin_render.h │ ├── gvplugin_textlayout.h │ ├── gvrender.c │ ├── gvtextlayout.c │ ├── gvtool_tred.c │ ├── gvusershape.c │ └── libgvc.pc.in ├── gvpr │ ├── Makefile.am │ ├── actions.c │ ├── actions.h │ ├── compile.c │ ├── compile.h │ ├── gprdata │ ├── gprstate.c │ ├── gprstate.h │ ├── gvpr.3 │ ├── gvpr.c │ ├── gvpr.h │ ├── gvprlib.vcxproj │ ├── gvprlib.vcxproj.filters │ ├── libgvpr.pc.in │ ├── mkdefs.c │ ├── parse.c │ ├── parse.h │ ├── queue.c │ ├── queue.h │ ├── trie.c │ └── trieFA.h ├── ingraphs │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── ingraphs.c │ ├── ingraphs.h │ ├── ingraphs.vcxproj │ └── ingraphs.vcxproj.filters ├── inkpot │ ├── Makefile.am │ ├── data │ │ ├── POSTER │ │ ├── brewer_colors │ │ ├── rgb.txt │ │ ├── types.html │ │ └── xcolors.c │ ├── inkpot.1 │ ├── inkpot.3 │ ├── inkpot.c │ ├── inkpot.h │ ├── inkpot_lib.tcl │ ├── inkpot_lib_brewer.tcl │ ├── inkpot_lib_procs.tcl │ ├── inkpot_lib_svg.tcl │ ├── inkpot_lib_tk.tcl │ ├── inkpot_lib_x11.tcl │ ├── inkpot_scheme.c │ ├── inkpot_scheme.h │ ├── inkpot_value.c │ ├── inkpot_value.h │ ├── inkpot_xlate.c │ ├── inkpot_xlate.h │ ├── libinkpot.pc.in │ └── test │ │ ├── Makefile │ │ ├── inkpot_lib_define.h │ │ ├── inkpot_lib_scheme.h │ │ └── inkpot_lib_value.h ├── label │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── index.c │ ├── index.h │ ├── node.c │ ├── node.h │ ├── nrtmain.c │ ├── rectangle.c │ ├── rectangle.h │ ├── split.q.c │ ├── split.q.h │ ├── xlabels.c │ └── xlabels.h ├── mingle │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── agglomerative_bundling.c │ ├── agglomerative_bundling.h │ ├── edge_bundling.c │ ├── edge_bundling.h │ ├── ink.c │ ├── ink.h │ ├── minglelib.vcxproj │ ├── minglelib.vcxproj.filters │ ├── nearest_neighbor_graph.c │ ├── nearest_neighbor_graph.h │ ├── nearest_neighbor_graph_ann.cpp │ └── nearest_neighbor_graph_ann.h ├── neatogen │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── adjust.c │ ├── adjust.h │ ├── bfs.c │ ├── bfs.h │ ├── call_tri.c │ ├── call_tri.h │ ├── circuit.c │ ├── closest.c │ ├── closest.h │ ├── compute_hierarchy.c │ ├── conjgrad.c │ ├── conjgrad.h │ ├── constrained_majorization.c │ ├── constrained_majorization_ipsep.c │ ├── constraint.c │ ├── defs.h │ ├── delaunay.c │ ├── delaunay.h │ ├── digcola.h │ ├── dijkstra.c │ ├── dijkstra.h │ ├── edges.c │ ├── edges.h │ ├── embed_graph.c │ ├── embed_graph.h │ ├── fPQ.h │ ├── geometry.c │ ├── geometry.h │ ├── gvneatogen.vcxproj │ ├── gvneatogen.vcxproj.filters │ ├── heap.c │ ├── heap.h │ ├── hedges.c │ ├── hedges.h │ ├── info.c │ ├── info.h │ ├── kkutils.c │ ├── kkutils.h │ ├── legal.c │ ├── lu.c │ ├── matinv.c │ ├── matrix_ops.c │ ├── matrix_ops.h │ ├── mem.h │ ├── memory.c │ ├── mosek_quad_solve.c │ ├── mosek_quad_solve.h │ ├── multispline.c │ ├── multispline.h │ ├── neato.h │ ├── neatoinit.c │ ├── neatoprocs.h │ ├── neatosplines.c │ ├── opt_arrangement.c │ ├── overlap.c │ ├── overlap.h │ ├── pca.c │ ├── pca.h │ ├── poly.c │ ├── poly.h │ ├── printvis.c │ ├── quad_prog_solve.c │ ├── quad_prog_solver.h │ ├── quad_prog_vpsc.c │ ├── quad_prog_vpsc.h │ ├── site.c │ ├── site.h │ ├── smart_ini_x.c │ ├── solve.c │ ├── sparsegraph.h │ ├── stress.c │ ├── stress.h │ ├── stuff.c │ ├── voronoi.c │ └── voronoi.h ├── ortho │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── fPQ.c │ ├── fPQ.h │ ├── gvortho.vcxproj │ ├── gvortho.vcxproj.filters │ ├── maze.c │ ├── maze.h │ ├── ortho.c │ ├── ortho.h │ ├── partition.c │ ├── partition.h │ ├── rawgraph.c │ ├── rawgraph.h │ ├── sgraph.c │ ├── sgraph.h │ ├── structures.h │ ├── trap.h │ └── trapezoid.c ├── osage │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── osage.h │ ├── osage.vcxproj │ ├── osage.vcxproj.filters │ └── osageinit.c ├── pack │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── ccomps.c │ ├── libpack.pc.in │ ├── pack.3 │ ├── pack.c │ ├── pack.h │ └── ptest.c ├── patchwork │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── gvpatchwork.vcxproj │ ├── gvpatchwork.vcxproj.filters │ ├── patchwork.c │ ├── patchwork.h │ ├── patchworkinit.c │ ├── tree_map.c │ └── tree_map.h ├── pathplan │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Pathplan.vcxproj │ ├── Pathplan.vcxproj.filters │ ├── README │ ├── cvt.c │ ├── inpoly.c │ ├── libpathplan.pc.in │ ├── path.lefty │ ├── pathgeom.h │ ├── pathplan.3 │ ├── pathplan.def │ ├── pathplan.h │ ├── pathutil.h │ ├── route.c │ ├── shortest.c │ ├── shortestpth.c │ ├── solvers.c │ ├── solvers.h │ ├── tri.h │ ├── triang.c │ ├── util.c │ ├── vis.h │ ├── visibility.c │ └── vispath.h ├── rbtree │ ├── CHANGES │ ├── CMakeLists.txt │ ├── LICENSE │ ├── Makefile.am │ ├── makefile.txt │ ├── misc.c │ ├── misc.h │ ├── rbtree.vcxproj │ ├── rbtree.vcxproj.filters │ ├── red_black_tree.c │ ├── red_black_tree.h │ ├── simple_test.sh │ ├── stack.c │ ├── stack.h │ ├── test_rb │ └── test_red_black_tree.c ├── sfdpgen │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Multilevel.c │ ├── Multilevel.h │ ├── PriorityQueue.c │ ├── PriorityQueue.h │ ├── layout_similarity.c │ ├── libsfdp.pc.in │ ├── post_process.c │ ├── post_process.h │ ├── sfdp.h │ ├── sfdp.vcxproj │ ├── sfdp.vcxproj.filters │ ├── sfdpinit.c │ ├── sfdpinternal.h │ ├── sparse_solve.c │ ├── sparse_solve.h │ ├── spring_electrical.c │ ├── spring_electrical.h │ ├── stress_model.c │ ├── stress_model.h │ ├── uniform_stress.c │ └── uniform_stress.h ├── sfio │ ├── Make.state │ ├── Makefile.am │ ├── Makestate.sh │ ├── README │ ├── Sfio_dc │ │ ├── Makefile.am │ │ ├── sfdcdos.c │ │ ├── sfdcfilter.c │ │ ├── sfdchdr.h │ │ ├── sfdclzw.c │ │ ├── sfdcseekable.c │ │ ├── sfdcslow.c │ │ ├── sfdcsubstream.c │ │ ├── sfdctee.c │ │ ├── sfdcunion.c │ │ └── sfdisc.h │ ├── Sfio_f │ │ ├── Makefile.am │ │ ├── _sfclrerr.c │ │ ├── _sfdlen.c │ │ ├── _sfeof.c │ │ ├── _sferror.c │ │ ├── _sffileno.c │ │ ├── _sfgetc.c │ │ ├── _sfllen.c │ │ ├── _sfputc.c │ │ ├── _sfputd.c │ │ ├── _sfputl.c │ │ ├── _sfputm.c │ │ ├── _sfputu.c │ │ ├── _sfslen.c │ │ ├── _sfstacked.c │ │ ├── _sfulen.c │ │ └── _sfvalue.c │ ├── features │ │ └── sfio │ ├── sfclose.c │ ├── sfclrlock.c │ ├── sfcvt.c │ ├── sfdisc.c │ ├── sfdlen.c │ ├── sfexcept.c │ ├── sfexit.c │ ├── sfextern.c │ ├── sffcvt.c │ ├── sffilbuf.c │ ├── sfflsbuf.c │ ├── sfgetd.c │ ├── sfgetl.c │ ├── sfgetm.c │ ├── sfgetr.c │ ├── sfgetu.c │ ├── sfhdr.h │ ├── sfio.h │ ├── sfio.vcxproj │ ├── sfio.vcxproj.filters │ ├── sfio_t.h │ ├── sfllen.c │ ├── sfmode.c │ ├── sfmove.c │ ├── sfmutex.c │ ├── sfnew.c │ ├── sfnotify.c │ ├── sfnputc.c │ ├── sfopen.c │ ├── sfpkrd.c │ ├── sfpoll.c │ ├── sfpool.c │ ├── sfpopen.c │ ├── sfprintf.c │ ├── sfprints.c │ ├── sfpurge.c │ ├── sfputd.c │ ├── sfputl.c │ ├── sfputm.c │ ├── sfputr.c │ ├── sfputu.c │ ├── sfraise.c │ ├── sfrd.c │ ├── sfread.c │ ├── sfreserve.c │ ├── sfresize.c │ ├── sfscanf.c │ ├── sfseek.c │ ├── sfset.c │ ├── sfsetbuf.c │ ├── sfsetfd.c │ ├── sfsize.c │ ├── sfsk.c │ ├── sfstack.c │ ├── sfstrtod.c │ ├── sfswap.c │ ├── sfsync.c │ ├── sftable.c │ ├── sftell.c │ ├── sftmp.c │ ├── sfungetc.c │ ├── sfvprintf.c │ ├── sfvscanf.c │ ├── sfwr.c │ ├── sfwrite.c │ └── vthread.h ├── sparse │ ├── BinaryHeap.c │ ├── BinaryHeap.h │ ├── CMakeLists.txt │ ├── DotIO.c │ ├── DotIO.h │ ├── IntStack.c │ ├── IntStack.h │ ├── LinkedList.c │ ├── LinkedList.h │ ├── Makefile.am │ ├── QuadTree.c │ ├── QuadTree.h │ ├── SparseMatrix.c │ ├── SparseMatrix.h │ ├── clustering.c │ ├── clustering.h │ ├── color_palette.c │ ├── color_palette.h │ ├── colorutil.c │ ├── colorutil.h │ ├── general.c │ ├── general.h │ ├── gvsparse.vcxproj │ ├── gvsparse.vcxproj.filters │ ├── mq.c │ ├── mq.h │ ├── vector.c │ └── vector.h ├── spine │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── quad.c │ ├── quad.h │ ├── spine.c │ ├── spine.h │ ├── spine.vcxproj │ ├── spine.vcxproj.filters │ ├── spinehdr.h │ ├── subset.c │ ├── subset.h │ ├── union_find.c │ └── union_find.h ├── topfish │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── hierarchy.c │ ├── hierarchy.h │ ├── rescale_layout.c │ ├── topfish.vcxproj │ └── topfish.vcxproj.filters ├── twopigen │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── circle.c │ ├── circle.h │ ├── gvtwopigen.vcxproj │ ├── gvtwopigen.vcxproj.filters │ └── twopiinit.c ├── vmalloc │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README │ ├── malloc.c │ ├── vmalloc.h │ ├── vmalloc.vcxproj │ ├── vmalloc.vcxproj.filters │ ├── vmbest.c │ ├── vmclear.c │ ├── vmclose.c │ ├── vmdcheap.c │ ├── vmdebug.c │ ├── vmdisc.c │ ├── vmhdr.h │ ├── vmlast.c │ ├── vmopen.c │ ├── vmpool.c │ ├── vmprivate.c │ ├── vmprofile.c │ ├── vmregion.c │ ├── vmsegment.c │ ├── vmset.c │ ├── vmstat.c │ ├── vmstrdup.c │ ├── vmtrace.c │ └── vmwalk.c ├── vpsc │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── block.cpp │ ├── block.h │ ├── blocks.cpp │ ├── blocks.h │ ├── constraint.cpp │ ├── constraint.h │ ├── csolve_VPSC.cpp │ ├── csolve_VPSC.h │ ├── generate-constraints.cpp │ ├── generate-constraints.h │ ├── pairingheap │ │ ├── PairingHeap.cpp │ │ ├── PairingHeap.h │ │ └── dsexceptions.h │ ├── remove_rectangle_overlap.cpp │ ├── remove_rectangle_overlap.h │ ├── solve_VPSC.cpp │ ├── solve_VPSC.h │ ├── variable.cpp │ ├── variable.h │ ├── vpsc.vcxproj │ └── vpsc.vcxproj.filters └── xdot │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── libxdot.pc.in │ ├── xdot.3 │ ├── xdot.c │ ├── xdot.h │ ├── xdot.vcxproj │ └── xdot.vcxproj.filters ├── loadimage_test.sh ├── ltmain.sh.patch ├── m4 ├── README ├── glib-gettext.m4 ├── iconv.m4 ├── lib-ld.m4 ├── lib-link.m4 ├── lib-prefix.m4 └── ming.m4 ├── macosx ├── ActualSizeToolbarImage.tiff ├── EdgeAttributes.png ├── English.lproj │ ├── Attributes.xib │ ├── Document.xib │ ├── Export.xib │ ├── InfoPlist.strings │ └── MainMenu.xib ├── GVApplicationDelegate.h ├── GVApplicationDelegate.m ├── GVAttributeInspectorController.h ├── GVAttributeInspectorController.m ├── GVAttributeSchema.h ├── GVAttributeSchema.m ├── GVDocument.h ├── GVDocument.m ├── GVExportViewController.h ├── GVExportViewController.m ├── GVFileNotificationCenter.h ├── GVFileNotificationCenter.m ├── GVGraph.h ├── GVGraph.m ├── GVGraphArguments.h ├── GVGraphArguments.m ├── GVGraphDefaultAttributes.h ├── GVGraphDefaultAttributes.m ├── GVWindowController.h ├── GVWindowController.m ├── Graph.ai ├── GraphAttributes.png ├── GraphDot.icns ├── GraphGv.icns ├── Graphviz.ai ├── Graphviz.icns ├── Graphviz.psd ├── Info.plist.in ├── InspectorToolbarImage.tif ├── NodeAttributes.png ├── ZoomInToolbarImage.tiff ├── ZoomOutToolbarImage.tiff ├── ZoomToFitToolbarImage.tiff ├── build │ ├── English.lproj │ │ └── License.rtf │ ├── Makefile.leopard │ ├── Makefile.lion │ ├── Makefile.mountainlion │ ├── Makefile.snowleopard │ ├── Makefile.tiger │ ├── graphviz.help.helpindex.lion │ ├── graphviz.help.helpindex.snowleopard │ ├── graphviz.pmdoc │ │ ├── 01local.xml.in │ │ ├── 02graphviz.xml.in │ │ └── index.xml │ └── pmsurvey ├── graphviz.help │ └── graphviz.html ├── graphviz.xcodeproj │ ├── default.pbxuser │ ├── leopard.project.pbxproj │ ├── lion.project.pbxproj │ ├── mountainlion.project.pbxproj │ ├── project.pbxproj │ └── snowleopard.project.pbxproj ├── graphviz_prefix.pch ├── main.m └── prebuild │ ├── Makefile-packages.incl │ ├── Makefile.leopard │ ├── Makefile.lion │ ├── Makefile.snowleopard │ ├── Makefile.tiger │ ├── TODO_smyrna │ ├── cairo.patch │ ├── fontconfig.patch │ ├── gettext.patch │ ├── glib.leopard.patch │ ├── glib.patch │ ├── pango.patch │ └── pixman.patch ├── plugin.demo ├── README └── xgtk │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── autogen.sh │ ├── configure.ac │ ├── cpl1.0.txt │ ├── epl-v10.html │ ├── epl-v10.txt │ ├── src │ ├── Makefile.am │ ├── callbacks.c │ ├── callbacks.h │ ├── gtk.glade │ ├── gtk.gladep │ ├── gvdevice_xgtk.c │ ├── gvplugin_xgtk.c │ ├── interface.c │ ├── interface.h │ ├── support.c │ └── support.h │ └── xgtk-plugin.spec.in ├── plugin ├── CMakeLists.txt ├── Makefile.am ├── core │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── XFIG_FORMAT3.2.txt │ ├── gvloadimage_core.c │ ├── gvplugin_core.c │ ├── gvplugin_core.vcxproj │ ├── gvplugin_core.vcxproj.filters │ ├── gvrender_core_dia.c │ ├── gvrender_core_dot.c │ ├── gvrender_core_fig.c │ ├── gvrender_core_hpgl.c │ ├── gvrender_core_json.c │ ├── gvrender_core_map.c │ ├── gvrender_core_mif.c │ ├── gvrender_core_mp.c │ ├── gvrender_core_pic.c │ ├── gvrender_core_pov.c │ ├── gvrender_core_ps.c │ ├── gvrender_core_svg.c │ ├── gvrender_core_tk.c │ ├── gvrender_core_vml.c │ ├── gvrender_core_vtx.c │ └── ps.txt ├── devil │ ├── Makefile.am │ ├── gvdevice_devil.c │ └── gvplugin_devil.c ├── dot_layout │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── gvlayout_dot_layout.c │ ├── gvplugin_dot_layout.c │ ├── gvplugin_dot_layout.vcxproj │ └── gvplugin_dot_layout.vcxproj.filters ├── gd │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── gvdevice_gd.c │ ├── gvloadimage_gd.c │ ├── gvplugin_gd.c │ ├── gvplugin_gd.vcxproj │ ├── gvplugin_gd.vcxproj.filters │ ├── gvrender_gd.c │ ├── gvrender_gd_vrml.c │ └── gvtextlayout_gd.c ├── gdiplus │ ├── CMakeLists.txt │ ├── FileStream.cpp │ ├── FileStream.h │ ├── GdiPlusEnums.h.patch │ ├── GdiPlusHeaders.h.patch │ ├── GdiPlusImaging.h.patch │ ├── GdiPlusimageAttributes.h.patch │ ├── Makefile.am │ ├── gvdevice_gdiplus.cpp │ ├── gvloadimage_gdiplus.cpp │ ├── gvplugin_gdiplus.cpp │ ├── gvplugin_gdiplus.h │ ├── gvplugin_gdiplus.vcxproj │ ├── gvplugin_gdiplus.vcxproj.filters │ ├── gvrender_gdiplus.cpp │ └── gvtextlayout_gdiplus.cpp ├── gdk │ ├── Makefile.am │ ├── gvdevice_gdk.c │ ├── gvloadimage_gdk.c │ └── gvplugin_gdk.c ├── glitz │ ├── Makefile.am │ ├── gvdevice_glitz.c │ └── gvplugin_glitz.c ├── gs │ ├── Makefile.am │ ├── gvloadimage_gs.c │ └── gvplugin_gs.c ├── gtk │ ├── Makefile.am │ ├── callbacks.c │ ├── callbacks.h │ ├── gtk.glade │ ├── gtk.gladep │ ├── gvdevice_gtk.c │ ├── gvplugin_gtk.c │ ├── interface.c │ ├── interface.h │ ├── support.c │ └── support.h ├── lasi │ ├── Makefile.am │ ├── gvloadimage_lasi.c │ ├── gvplugin_lasi.c │ └── gvrender_lasi.cpp ├── ming │ ├── Bitstream_Vera_Sans.fdb │ ├── Bitstream_Vera_Serif.fdb │ ├── Makefile.am │ ├── gvplugin_ming.c │ └── gvrender_ming.c ├── neato_layout │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── gvlayout_neato_layout.c │ ├── gvplugin_neato_layout.c │ ├── gvplugin_neato_layout.vcxproj │ └── gvplugin_neato_layout.vcxproj.filters ├── pango │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── gvgetfontlist.h │ ├── gvgetfontlist_pango.c │ ├── gvloadimage_pango.c │ ├── gvplugin_pango.c │ ├── gvplugin_pango.h │ ├── gvplugin_pango.vcxproj │ ├── gvplugin_pango.vcxproj.filters │ ├── gvrender_pango.c │ └── gvtextlayout_pango.c ├── poppler │ ├── Makefile.am │ ├── gvloadimage_poppler.c │ └── gvplugin_poppler.c ├── quartz │ ├── GVTextLayout.h │ ├── GVTextLayout.m │ ├── Makefile.am │ ├── gvdevice_quartz.c │ ├── gvloadimage_quartz.c │ ├── gvplugin_quartz.c │ ├── gvplugin_quartz.h │ ├── gvrender_quartz.c │ └── gvtextlayout_quartz.c ├── rsvg │ ├── Makefile.am │ ├── gvloadimage_rsvg.c │ └── gvplugin_rsvg.c ├── visio │ ├── Makefile.am │ ├── VisioGraphic.cpp │ ├── VisioGraphic.h │ ├── VisioRender.cpp │ ├── VisioRender.h │ ├── VisioText.cpp │ ├── VisioText.h │ ├── gvplugin_visio.c │ ├── gvplugin_visio.ncb │ ├── gvplugin_visio.sln │ ├── gvplugin_visio.suo │ ├── gvplugin_visio.vcproj.RESEARCH.arif.user │ ├── gvplugin_visio.vcproj.user │ └── gvrender_visio_vdx.cpp ├── webp │ ├── Makefile.am │ ├── gvdevice_webp.c │ ├── gvloadimage_webp.c │ └── gvplugin_webp.c └── xlib │ ├── Makefile.am │ ├── gvdevice_xlib.c │ ├── gvplugin_xlib.c │ ├── slow_graph_stream_test.sh │ ├── vimdot.1 │ └── vimdot.sh ├── redhat ├── graphviz.spec.fedora.in └── graphviz.spec.rhel.in ├── rpm_notes.txt ├── rtest ├── Makefile.am ├── cdiff.c ├── doit ├── dotdiff ├── doted ├── edgepath_test.txt ├── font_tests.txt ├── gradient_test.txt ├── graphs │ ├── AvantGarde.gv │ ├── Bookman.gv │ ├── Courier.gv │ ├── ER.gv │ ├── Heawood.gv │ ├── Helvetica.gv │ ├── KW91.gv │ ├── Latin1.gv │ ├── NaN.gv │ ├── NewCenturySchlbk.gv │ ├── Palatino.gv │ ├── Petersen.gv │ ├── Symbol.gv │ ├── Times.gv │ ├── ZapfChancery.gv │ ├── ZapfDingbats.gv │ ├── a.gv │ ├── abstract.gv │ ├── alf.gv │ ├── arrows.gv │ ├── arrowsize.gv │ ├── awilliams.gv │ ├── b.gv │ ├── b100.gv │ ├── b102.gv │ ├── b103.gv │ ├── b104.gv │ ├── b106.gv │ ├── b117.gv │ ├── b123.gv │ ├── b124.gv │ ├── b135.gv │ ├── b143.gv │ ├── b145.gv │ ├── b146.gv │ ├── b15.gv │ ├── b155.gv │ ├── b22.gv │ ├── b29.gv │ ├── b3.gv │ ├── b33.gv │ ├── b34.gv │ ├── b36.gv │ ├── b491.gv │ ├── b51.gv │ ├── b53.gv │ ├── b545.gv │ ├── b56.gv │ ├── b57.gv │ ├── b58.gv │ ├── b60.gv │ ├── b62.gv │ ├── b68.gv │ ├── b69.gv │ ├── b7.gv │ ├── b71.gv │ ├── b73.gv │ ├── b73a.gv │ ├── b76.gv │ ├── b77.gv │ ├── b786.gv │ ├── b79.gv │ ├── b80.gv │ ├── b80a.gv │ ├── b81.gv │ ├── b85.gv │ ├── b94.gv │ ├── b993.gv │ ├── bad.gv │ ├── badvoro.gv │ ├── big.gv │ ├── biglabel.gv │ ├── cairo.gv │ ├── center.gv │ ├── clover.gv │ ├── clust.gv │ ├── clust1.gv │ ├── clust2.gv │ ├── clust3.gv │ ├── clust4.gv │ ├── clust5.gv │ ├── clusters.gv │ ├── clustlabel.gv │ ├── color.gv │ ├── colors.gv │ ├── colorscheme.gv │ ├── compound.gv │ ├── crazy.gv │ ├── ctext.gv │ ├── d.gv │ ├── dd.gv │ ├── decorate.gv │ ├── dfa.gv │ ├── dfd.ps │ ├── dice.ps │ ├── dir.gv │ ├── dpd.gv │ ├── edgeclip.gv │ ├── fdp.gv │ ├── fig6.gv │ ├── flatedge.gv │ ├── fsm.gv │ ├── grammar.gv │ ├── grdangles.gv │ ├── grdcluster.gv │ ├── grdcolors.gv │ ├── grdfillcolor.gv │ ├── grdlinear.gv │ ├── grdlinear_angle.gv │ ├── grdlinear_node.gv │ ├── grdradial.gv │ ├── grdradial_angle.gv │ ├── grdradial_node.gv │ ├── grdshapes.gv │ ├── hashtable.gv │ ├── honda-tokoro.gv │ ├── html.gv │ ├── html2.gv │ ├── in.gv │ ├── inv_inv.gv │ ├── inv_nul.gv │ ├── inv_val.gv │ ├── japanese.gv │ ├── jcctree.gv │ ├── jcr.gif │ ├── jsort.gv │ ├── labelclust-fbc.gv │ ├── labelclust-fbd.gv │ ├── labelclust-fbl.gv │ ├── labelclust-fbr.gv │ ├── labelclust-fdc.gv │ ├── labelclust-fdd.gv │ ├── labelclust-fdl.gv │ ├── labelclust-fdr.gv │ ├── labelclust-ftc.gv │ ├── labelclust-ftd.gv │ ├── labelclust-ftl.gv │ ├── labelclust-ftr.gv │ ├── labelclust-nbc.gv │ ├── labelclust-nbd.gv │ ├── labelclust-nbl.gv │ ├── labelclust-nbr.gv │ ├── labelclust-ndc.gv │ ├── labelclust-ndd.gv │ ├── labelclust-ndl.gv │ ├── labelclust-ndr.gv │ ├── labelclust-ntc.gv │ ├── labelclust-ntd.gv │ ├── labelclust-ntl.gv │ ├── labelclust-ntr.gv │ ├── labelroot-fbc.gv │ ├── labelroot-fbd.gv │ ├── labelroot-fbl.gv │ ├── labelroot-fbr.gv │ ├── labelroot-fdc.gv │ ├── labelroot-fdd.gv │ ├── labelroot-fdl.gv │ ├── labelroot-fdr.gv │ ├── labelroot-ftc.gv │ ├── labelroot-ftd.gv │ ├── labelroot-ftl.gv │ ├── labelroot-ftr.gv │ ├── labelroot-nbc.gv │ ├── labelroot-nbd.gv │ ├── labelroot-nbl.gv │ ├── labelroot-nbr.gv │ ├── labelroot-ndc.gv │ ├── labelroot-ndd.gv │ ├── labelroot-ndl.gv │ ├── labelroot-ndr.gv │ ├── labelroot-ntc.gv │ ├── labelroot-ntd.gv │ ├── labelroot-ntl.gv │ ├── labelroot-ntr.gv │ ├── layer.gv │ ├── layer2.gv │ ├── layers.gv │ ├── ldbxtried.gv │ ├── longflat.gv │ ├── lsunix1.gv │ ├── lsunix2.gv │ ├── lsunix3.gv │ ├── mike.gv │ ├── mode.gv │ ├── multi.gv │ ├── nestedclust.gv │ ├── newarrows.gv │ ├── ngk10_4.gv │ ├── nhg.gv │ ├── nojustify.gv │ ├── nul_inv.gv │ ├── nul_nul.gv │ ├── nul_val.gv │ ├── ordering.gv │ ├── overlap.gv │ ├── p.gv │ ├── p2.gv │ ├── p3.gv │ ├── p4.gv │ ├── pack.gv │ ├── pgram.gv │ ├── pm2way.gv │ ├── pmpipe.gv │ ├── polypoly.gv │ ├── ports.gv │ ├── proc3d.gv │ ├── process.gv │ ├── ps.gv │ ├── ps_user_shapes.gv │ ├── pslib.gv │ ├── rd_rules.gv │ ├── record.gv │ ├── record2.gv │ ├── records.gv │ ├── root.gv │ ├── rootlabel.gv │ ├── rowcolsep.gv │ ├── rowe.gv │ ├── russian.gv │ ├── sb_box.gv │ ├── sb_box_dbl.gv │ ├── sb_circle.gv │ ├── sb_circle_dbl.gv │ ├── sdl.ps │ ├── shapes.gv │ ├── shells.gv │ ├── sides.gv │ ├── size.gv │ ├── sl_box.gv │ ├── sl_box_dbl.gv │ ├── sl_circle.gv │ ├── sl_circle_dbl.gv │ ├── sq_rules.gv │ ├── sr_box.gv │ ├── sr_box_dbl.gv │ ├── sr_circle.gv │ ├── sr_circle_dbl.gv │ ├── st_box.gv │ ├── st_box_dbl.gv │ ├── st_circle.gv │ ├── st_circle_dbl.gv │ ├── states.gv │ ├── structs.gv │ ├── style.gv │ ├── train11.gv │ ├── trapeziumlr.gv │ ├── tree.gv │ ├── triedds.gv │ ├── try.gv │ ├── unix.gv │ ├── unix2.gv │ ├── unix2k.gv │ ├── url.gv │ ├── user_shapes.gv │ ├── val_inv.gv │ ├── val_nul.gv │ ├── val_val.gv │ ├── viewfile.gv │ ├── viewport.gv │ ├── weight.gv │ ├── world.gv │ ├── xlabels.gv │ └── xx.gv ├── imagepath_test.txt ├── imagepath_test │ ├── base.gv │ ├── delim.sed │ ├── gen_graph.sh │ ├── image.jpg │ ├── image_dir │ │ └── image.jpg │ ├── imagepath_dir │ │ └── image.jpg │ ├── imagepath_test.sh │ ├── save_png_files.sh │ └── test_cases ├── linux.i386 │ ├── ER.gv │ ├── ER.ps │ ├── b102.gv │ ├── b106.gv │ ├── b15.png │ ├── b29.gv │ ├── b33.ps │ ├── b36.gv │ ├── b69.ps │ ├── crazy.gv │ ├── crazy.ps │ ├── dfa.gv │ ├── hashtable.gv │ └── newarrows.gif ├── linux.x86 │ ├── AvantGarde_dot.png │ ├── AvantGarde_dot.ps │ ├── Bookman_dot.png │ ├── Bookman_dot.ps │ ├── Courier_dot.png │ ├── Courier_dot.ps │ ├── Helvetica_dot.png │ ├── Helvetica_dot.ps │ ├── NewCenturySchlbk_dot.png │ ├── NewCenturySchlbk_dot.ps │ ├── Palatino_dot.png │ ├── Palatino_dot.ps │ ├── Symbol_dot.png │ ├── Times_dot.png │ ├── Times_dot.ps │ ├── ZapfChancery_dot.png │ ├── ZapfChancery_dot.ps │ ├── ZapfDingbats_dot.png │ ├── ZapfDingbats_dot.ps │ ├── arrows_dot.gv │ ├── arrows_dot.ps │ ├── arrowsize_dot.png │ ├── cairo_dot_cairo.png │ ├── cairo_dot_cairo.ps │ ├── cairo_dot_cairo.svg │ ├── center_dot.png │ ├── center_dot.ps │ ├── clusters_dot.png │ ├── clusters_dot.ps │ ├── clustlabel_dot.ps │ ├── clustlabel_dot1.ps │ ├── clustlabel_dot2.ps │ ├── clustlabel_dot3.ps │ ├── clustlabel_dot4.ps │ ├── clustlabel_dot5.ps │ ├── clustlabel_dot6.ps │ ├── clustlabel_dot7.ps │ ├── color_dot.png │ ├── color_dot1.png │ ├── colors_dot.ps │ ├── colorscheme_dot.png │ ├── colorscheme_dot.ps │ ├── compound_dot.gv │ ├── crazy_dot.png │ ├── crazy_dot.ps │ ├── decorate_dot.png │ ├── dir_dot.ps │ ├── dotsplines_dot.gv │ ├── dotsplines_dot1.gv │ ├── edgeclip_dot.gv │ ├── fdp_clus_fdp.png │ ├── flatedge_dot.gv │ ├── grdangles_dot.png │ ├── grdangles_dot.svg │ ├── grdcluster_dot.png │ ├── grdcluster_dot.svg │ ├── grdcolors_dot.png │ ├── grdcolors_dot.svg │ ├── grdfillcolor_dot.png │ ├── grdfillcolor_dot.svg │ ├── grdlinear_angle_dot.png │ ├── grdlinear_angle_dot.svg │ ├── grdlinear_dot.png │ ├── grdlinear_dot.svg │ ├── grdlinear_node_dot.png │ ├── grdlinear_node_dot.svg │ ├── grdradial_angle_dot.png │ ├── grdradial_angle_dot.svg │ ├── grdradial_dot.png │ ├── grdradial_dot.svg │ ├── grdradial_node_dot.png │ ├── grdradial_node_dot.svg │ ├── grdshapes_dot.png │ ├── grdshapes_dot.svg │ ├── html2_dot.gv │ ├── html2_dot.ps │ ├── html2_dot.svg │ ├── html_dot.gv │ ├── html_dot.ps │ ├── inv_inv_dot.png │ ├── inv_nul_dot.png │ ├── inv_val_dot.png │ ├── japanese_dot.png │ ├── layers_dot.ps │ ├── mode_neato.ps │ ├── mode_neato1.ps │ ├── mode_neato2.ps │ ├── model_neato.ps │ ├── model_neato1.ps │ ├── neatosplines_neato.gv │ ├── neatosplines_neato1.gv │ ├── nestedclust_dot.gv │ ├── nojustify_dot.png │ ├── nojustify_dot.ps │ ├── nojustify_dot_cairo.ps │ ├── nojustify_dot_gd.png │ ├── nul_inv_dot.png │ ├── nul_nul_dot.png │ ├── nul_val_dot.png │ ├── ordering_dot.gv │ ├── ordering_dot1.gv │ ├── overlap_neato.gv │ ├── overlap_neato1.gv │ ├── pack_neato.gv │ ├── pack_neato1.gv │ ├── pack_neato2.gv │ ├── page_neato.ps │ ├── page_neato1.ps │ ├── page_neato2.ps │ ├── polypoly_dot.png │ ├── polypoly_dot.ps │ ├── ports_dot.gv │ ├── ps_user_shapes_dot.ps │ ├── pslib_dot.ps │ ├── rankdir_dot.gv │ ├── rankdir_dot1.gv │ ├── rankdir_dot2.gv │ ├── rd_rules_dot.png │ ├── record_dot.gv │ ├── record_dot.ps │ ├── root_circo.gv │ ├── root_twopi.gv │ ├── rootlabel_dot.ps │ ├── rootlabel_dot1.ps │ ├── rootlabel_dot2.ps │ ├── rootlabel_dot3.ps │ ├── rootlabel_dot4.ps │ ├── rootlabel_dot5.ps │ ├── rootlabel_dot6.ps │ ├── rootlabel_dot7.ps │ ├── rotate_dot.png │ ├── rotate_dot.ps │ ├── rotate_dot1.png │ ├── rotate_dot1.ps │ ├── rowcolsep_dot.gv │ ├── rowcolsep_dot1.gv │ ├── russian_dot.png │ ├── sb_box_dbl_dot.png │ ├── sb_box_dot.png │ ├── sb_circle_dbl_dot.png │ ├── sb_circle_dot.png │ ├── shapes_dot.gv │ ├── shapes_dot.ps │ ├── sides_dot.ps │ ├── size_ex_dot.png │ ├── size_ex_dot.ps │ ├── size_neato.png │ ├── size_neato.ps │ ├── sl_box_dbl_dot.png │ ├── sl_box_dot.png │ ├── sl_circle_dbl_dot.png │ ├── sl_circle_dot.png │ ├── sq_rules_dot.png │ ├── sr_box_dbl_dot.png │ ├── sr_box_dot.png │ ├── sr_circle_dbl_dot.png │ ├── sr_circle_dot.png │ ├── st_box_dbl_dot.png │ ├── st_box_dot.png │ ├── st_circle_dbl_dot.png │ ├── st_circle_dot.png │ ├── style_dot.png │ ├── style_dot.ps │ ├── url_dot.cmapx │ ├── url_dot.cmapx_np │ ├── url_dot.imap │ ├── url_dot.imap_np │ ├── url_dot.ps2 │ ├── url_dot.svg │ ├── user_shapes_dot.ps │ ├── user_shapes_dot_gd.png │ ├── val_inv_dot.png │ ├── val_nul_dot.png │ ├── val_val_dot.png │ ├── viewport_neato.png │ ├── viewport_neato.ps │ ├── viewport_neato1.png │ ├── viewport_neato1.ps │ ├── viewport_neato2.png │ ├── viewport_neato2.ps │ ├── weight_dot.gv │ ├── xlabels_dot.png │ └── xlabels_neato.png ├── nshare │ ├── AvantGarde_dot.png │ ├── AvantGarde_dot.ps │ ├── Bookman_dot.png │ ├── Bookman_dot.ps │ ├── Courier_dot.png │ ├── Courier_dot.ps │ ├── Helvetica_dot.png │ ├── Helvetica_dot.ps │ ├── NewCenturySchlbk_dot.png │ ├── NewCenturySchlbk_dot.ps │ ├── Palatino_dot.png │ ├── Palatino_dot.ps │ ├── Symbol_dot.png │ ├── Times_dot.png │ ├── Times_dot.ps │ ├── ZapfChancery_dot.png │ ├── ZapfChancery_dot.ps │ ├── ZapfDingbats_dot.png │ ├── ZapfDingbats_dot.ps │ ├── arrows_dot.gv │ ├── arrows_dot.ps │ ├── arrowsize_dot.png │ ├── cairo_dot_cairo.png │ ├── cairo_dot_cairo.ps │ ├── cairo_dot_cairo.svg │ ├── center_dot.png │ ├── center_dot.ps │ ├── clusters_dot.png │ ├── clusters_dot.ps │ ├── clustlabel_dot.ps │ ├── clustlabel_dot1.ps │ ├── clustlabel_dot2.ps │ ├── clustlabel_dot3.ps │ ├── clustlabel_dot4.ps │ ├── clustlabel_dot5.ps │ ├── clustlabel_dot6.ps │ ├── clustlabel_dot7.ps │ ├── color_dot.png │ ├── color_dot1.png │ ├── colors_dot.ps │ ├── colorscheme_dot.png │ ├── colorscheme_dot.ps │ ├── compound_dot.gv │ ├── crazy_dot.png │ ├── crazy_dot.ps │ ├── decorate_dot.png │ ├── dir_dot.ps │ ├── dotsplines_dot.gv │ ├── dotsplines_dot1.gv │ ├── edgeclip_dot.gv │ ├── fdp_clus_fdp.png │ ├── flatedge_dot.gv │ ├── grdangles_dot.png │ ├── grdangles_dot.svg │ ├── grdcluster_dot.png │ ├── grdcluster_dot.svg │ ├── grdcolors_dot.png │ ├── grdcolors_dot.svg │ ├── grdfillcolor_dot.png │ ├── grdfillcolor_dot.svg │ ├── grdlinear_angle_dot.png │ ├── grdlinear_angle_dot.svg │ ├── grdlinear_dot.png │ ├── grdlinear_dot.svg │ ├── grdlinear_node_dot.png │ ├── grdlinear_node_dot.svg │ ├── grdradial_angle_dot.png │ ├── grdradial_angle_dot.svg │ ├── grdradial_dot.png │ ├── grdradial_dot.svg │ ├── grdradial_node_dot.png │ ├── grdradial_node_dot.svg │ ├── grdshapes_dot.png │ ├── grdshapes_dot.svg │ ├── html2_dot.gv │ ├── html2_dot.ps │ ├── html2_dot.svg │ ├── html_dot.gv │ ├── html_dot.ps │ ├── inv_inv_dot.png │ ├── inv_nul_dot.png │ ├── inv_val_dot.png │ ├── japanese_dot.png │ ├── layers_dot.ps │ ├── mode_neato.ps │ ├── mode_neato1.ps │ ├── mode_neato2.ps │ ├── model_neato.ps │ ├── model_neato1.ps │ ├── neatosplines_neato.gv │ ├── neatosplines_neato1.gv │ ├── nestedclust_dot.gv │ ├── nojustify_dot.png │ ├── nojustify_dot.ps │ ├── nojustify_dot_cairo.ps │ ├── nojustify_dot_gd.png │ ├── nul_inv_dot.png │ ├── nul_nul_dot.png │ ├── nul_val_dot.png │ ├── ordering_dot.gv │ ├── ordering_dot1.gv │ ├── overlap_neato.gv │ ├── overlap_neato1.gv │ ├── pack_neato.gv │ ├── pack_neato1.gv │ ├── pack_neato2.gv │ ├── page_neato.ps │ ├── page_neato1.ps │ ├── page_neato2.ps │ ├── polypoly_dot.png │ ├── polypoly_dot.ps │ ├── ports_dot.gv │ ├── ps_user_shapes_dot.ps │ ├── pslib_dot.ps │ ├── rankdir_dot.gv │ ├── rankdir_dot1.gv │ ├── rankdir_dot2.gv │ ├── rd_rules_dot.png │ ├── record_dot.gv │ ├── record_dot.ps │ ├── root_circo.gv │ ├── root_twopi.gv │ ├── rootlabel_dot.ps │ ├── rootlabel_dot1.ps │ ├── rootlabel_dot2.ps │ ├── rootlabel_dot3.ps │ ├── rootlabel_dot4.ps │ ├── rootlabel_dot5.ps │ ├── rootlabel_dot6.ps │ ├── rootlabel_dot7.ps │ ├── rotate_dot.png │ ├── rotate_dot.ps │ ├── rotate_dot1.png │ ├── rotate_dot1.ps │ ├── rowcolsep_dot.gv │ ├── rowcolsep_dot1.gv │ ├── russian_dot.png │ ├── sb_box_dbl_dot.png │ ├── sb_box_dot.png │ ├── sb_circle_dbl_dot.png │ ├── sb_circle_dot.png │ ├── shapes_dot.gv │ ├── shapes_dot.ps │ ├── sides_dot.ps │ ├── size_ex_dot.png │ ├── size_ex_dot.ps │ ├── size_neato.png │ ├── size_neato.ps │ ├── sl_box_dbl_dot.png │ ├── sl_box_dot.png │ ├── sl_circle_dbl_dot.png │ ├── sl_circle_dot.png │ ├── sq_rules_dot.png │ ├── sr_box_dbl_dot.png │ ├── sr_box_dot.png │ ├── sr_circle_dbl_dot.png │ ├── sr_circle_dot.png │ ├── st_box_dbl_dot.png │ ├── st_box_dot.png │ ├── st_circle_dbl_dot.png │ ├── st_circle_dot.png │ ├── style_dot.png │ ├── style_dot.ps │ ├── url_dot.cmapx │ ├── url_dot.cmapx_np │ ├── url_dot.imap │ ├── url_dot.imap_np │ ├── url_dot.ps2 │ ├── url_dot.svg │ ├── user_shapes_dot.ps │ ├── user_shapes_dot_gd.png │ ├── val_inv_dot.png │ ├── val_nul_dot.png │ ├── val_val_dot.png │ ├── viewport_neato.png │ ├── viewport_neato.ps │ ├── viewport_neato1.png │ ├── viewport_neato1.ps │ ├── viewport_neato2.png │ ├── viewport_neato2.ps │ ├── weight_dot.gv │ ├── xlabels_dot.png │ └── xlabels_neato.png ├── rtest.sh ├── share │ ├── ER.gv │ ├── ER.ps │ ├── Heawood.gv │ ├── Heawood.ps │ ├── KW91.gv │ ├── Latin1.gv │ ├── NaN.gv │ ├── Petersen.gv │ ├── Petersen.ps │ ├── a1.gv │ ├── a2.gv │ ├── a3.gv │ ├── abstract.gv │ ├── alf.gv │ ├── b102.gv │ ├── b106.gv │ ├── b117.ps │ ├── b117a.ps │ ├── b124.gv │ ├── b135.ps │ ├── b145.png │ ├── b15.png │ ├── b155.ps │ ├── b22.ps │ ├── b29.gv │ ├── b3.ps │ ├── b33.ps │ ├── b34.gif │ ├── b36.gv │ ├── b491.gv │ ├── b51.gv │ ├── b545.gv │ ├── b545.plain-ext │ ├── b56.gif │ ├── b57.ps │ ├── b60.gif │ ├── b62.plain │ ├── b68.ps │ ├── b69.ps │ ├── b7.ps │ ├── b71.ps │ ├── b77.ps │ ├── b786.gv │ ├── b79.jpg │ ├── b80.ps │ ├── b81.svg │ ├── b94.gv │ ├── big.ps │ ├── biglabel.ps │ ├── clover.ps │ ├── clust.gv │ ├── clust1.gv │ ├── clust2.gv │ ├── clust3.gv │ ├── clust4.gv │ ├── clust5.gv │ ├── crazy.gv │ ├── crazy.ps │ ├── ctext.gv │ ├── dfa.gv │ ├── dpd.ps │ ├── dpd1.ps │ ├── dpd2.ps │ ├── dpd3.ps │ ├── dpd4.ps │ ├── dpd5.ps │ ├── fig6.gv │ ├── flatedge.gv │ ├── fsm.gv │ ├── grammar.gv │ ├── hashtable.gv │ ├── in.ps │ ├── jcctree.gv │ ├── jsort.gv │ ├── labelclust-fbc.gv │ ├── labelclust-fbd.gv │ ├── labelclust-fbl.gv │ ├── labelclust-fbr.gv │ ├── labelclust-fdc.gv │ ├── labelclust-fdd.gv │ ├── labelclust-fdl.gv │ ├── labelclust-fdr.gv │ ├── labelclust-ftc.gv │ ├── labelclust-ftd.gv │ ├── labelclust-ftl.gv │ ├── labelclust-ftr.gv │ ├── labelclust-nbc.gv │ ├── labelclust-nbd.gv │ ├── labelclust-nbl.gv │ ├── labelclust-nbr.gv │ ├── labelclust-ndc.gv │ ├── labelclust-ndd.gv │ ├── labelclust-ndl.gv │ ├── labelclust-ndr.gv │ ├── labelclust-ntc.gv │ ├── labelclust-ntd.gv │ ├── labelclust-ntl.gv │ ├── labelclust-ntr.gv │ ├── labelroot-fbc.gv │ ├── labelroot-fbd.gv │ ├── labelroot-fbl.gv │ ├── labelroot-fbr.gv │ ├── labelroot-fdc.gv │ ├── labelroot-fdd.gv │ ├── labelroot-fdl.gv │ ├── labelroot-fdr.gv │ ├── labelroot-ftc.gv │ ├── labelroot-ftd.gv │ ├── labelroot-ftl.gv │ ├── labelroot-ftr.gv │ ├── labelroot-nbc.gv │ ├── labelroot-nbd.gv │ ├── labelroot-nbl.gv │ ├── labelroot-nbr.gv │ ├── labelroot-ndc.gv │ ├── labelroot-ndd.gv │ ├── labelroot-ndl.gv │ ├── labelroot-ndr.gv │ ├── labelroot-ntc.gv │ ├── labelroot-ntd.gv │ ├── labelroot-ntl.gv │ ├── labelroot-ntr.gv │ ├── layer.ps │ ├── layer2.ps │ ├── ldbxtried.gv │ ├── longflat.gv │ ├── lsunix1.ps │ ├── lsunix2.ps │ ├── lsunix3.ps │ ├── mike.gv │ ├── multi.ps │ ├── newarrows.gif │ ├── newarrows.gv │ ├── newarrows.ps │ ├── ngk10_4.gv │ ├── ngk10_4.ps │ ├── nhg.gv │ ├── p.ps │ ├── p2.ps │ ├── p3.ps │ ├── p4.ps │ ├── pgram.gv │ ├── pm2way.gv │ ├── pmpipe.gv │ ├── polypoly.gv │ ├── proc3d.gv │ ├── process.gv │ ├── process.ps │ ├── ps.ps │ ├── rd_rules.png │ ├── record2.gv │ ├── records.gv │ ├── rowe.gv │ ├── shells.gv │ ├── sq_rules.png │ ├── states.gv │ ├── structs.gv │ ├── structs.ps │ ├── train11.gv │ ├── trapeziumlr.gv │ ├── tree.gv │ ├── triedds.gv │ ├── try.gv │ ├── unix.gv │ ├── unix.ps │ ├── unix2.gv │ ├── unix2k.gv │ ├── viewfile.gv │ └── world.gv ├── strps.awk ├── tests.txt ├── whichcc └── windows │ ├── ER.gv │ ├── ER.ps │ ├── Heawood.gv │ ├── Heawood.ps │ ├── KW91.gv │ ├── Latin1.gv │ ├── NaN.gv │ ├── Petersen.gv │ ├── abstract.gv │ ├── alf.gv │ ├── b102.gv │ ├── b106.gv │ ├── b117.ps │ ├── b117a.ps │ ├── b124.gv │ ├── b135.ps │ ├── b145.png │ ├── b15.png │ ├── b155.ps │ ├── b22.ps │ ├── b29.gv │ ├── b3.ps │ ├── b33.ps │ ├── b34.gif │ ├── b36.gv │ ├── b491.gv │ ├── b51.gv │ ├── b56.gif │ ├── b57.ps │ ├── b60.gif │ ├── b62.plain │ ├── b68.ps │ ├── b69.ps │ ├── b7.ps │ ├── b71.ps │ ├── b79.jpg │ ├── b81.svg │ ├── b94.gv │ ├── big.ps │ ├── biglabel.ps │ ├── clust.gv │ ├── clust1.gv │ ├── clust2.gv │ ├── clust3.gv │ ├── clust4.gv │ ├── clust5.gv │ ├── crazy.gv │ ├── crazy.ps │ ├── ctext.gv │ ├── dfa.gv │ ├── dpd.ps │ ├── dpd1.ps │ ├── dpd2.ps │ ├── dpd3.ps │ ├── dpd4.ps │ ├── dpd5.ps │ ├── fig6.gv │ ├── fsm.gv │ ├── grammar.gv │ ├── hashtable.gv │ ├── jcctree.gv │ ├── jsort.gv │ ├── labelclust-fbc.gv │ ├── labelclust-fbd.gv │ ├── labelclust-fbl.gv │ ├── labelclust-fbr.gv │ ├── labelclust-fdc.gv │ ├── labelclust-fdd.gv │ ├── labelclust-fdl.gv │ ├── labelclust-fdr.gv │ ├── labelclust-ftc.gv │ ├── labelclust-ftd.gv │ ├── labelclust-ftl.gv │ ├── labelclust-ftr.gv │ ├── labelclust-nbc.gv │ ├── labelclust-nbd.gv │ ├── labelclust-nbl.gv │ ├── labelclust-nbr.gv │ ├── labelclust-ndc.gv │ ├── labelclust-ndd.gv │ ├── labelclust-ndl.gv │ ├── labelclust-ndr.gv │ ├── labelclust-ntc.gv │ ├── labelclust-ntd.gv │ ├── labelclust-ntl.gv │ ├── labelclust-ntr.gv │ ├── labelroot-fbc.gv │ ├── labelroot-fbd.gv │ ├── labelroot-fbl.gv │ ├── labelroot-fbr.gv │ ├── labelroot-fdc.gv │ ├── labelroot-fdd.gv │ ├── labelroot-fdl.gv │ ├── labelroot-fdr.gv │ ├── labelroot-ftc.gv │ ├── labelroot-ftd.gv │ ├── labelroot-ftl.gv │ ├── labelroot-ftr.gv │ ├── labelroot-nbc.gv │ ├── labelroot-nbd.gv │ ├── labelroot-nbl.gv │ ├── labelroot-nbr.gv │ ├── labelroot-ndc.gv │ ├── labelroot-ndd.gv │ ├── labelroot-ndl.gv │ ├── labelroot-ndr.gv │ ├── labelroot-ntc.gv │ ├── labelroot-ntd.gv │ ├── labelroot-ntl.gv │ ├── labelroot-ntr.gv │ ├── layer.ps │ ├── layer2.ps │ ├── ldbxtried.gv │ ├── longflat.gv │ ├── lsunix1.ps │ ├── lsunix2.ps │ ├── lsunix3.ps │ ├── mike.gv │ ├── newarrows.gif │ ├── newarrows.gv │ ├── newarrows.ps │ ├── ngk10_4.gv │ ├── ngk10_4.ps │ ├── nhg.gv │ ├── p.ps │ ├── p2.ps │ ├── p3.ps │ ├── p4.ps │ ├── pgram.gv │ ├── pm2way.gv │ ├── pmpipe.gv │ ├── polypoly.gv │ ├── proc3d.gv │ ├── process.gv │ ├── process.ps │ ├── record2.gv │ ├── records.gv │ ├── rowe.gv │ ├── shells.gv │ ├── states.gv │ ├── structs.gv │ ├── structs.ps │ ├── train11.gv │ ├── trapeziumlr.gv │ ├── tree.gv │ ├── triedds.gv │ ├── try.gv │ ├── unix.gv │ ├── unix.ps │ ├── unix2.gv │ ├── unix2k.gv │ ├── viewfile.gv │ └── world.gv ├── rtest2 ├── Makefile ├── TESTS ├── rtests.PLAN ├── test.tcl └── test_reference.tgz ├── share ├── Makefile.am ├── examples │ ├── 4elt.gv │ ├── Makefile.am │ └── world.gv └── gui │ ├── 2D.png │ ├── 3D.png │ ├── AntiselectRect.png │ ├── AntiselectRectX.png │ ├── Makefile.am │ ├── add_edge.png │ ├── arial.tga │ ├── attr_widgets.dot │ ├── attrs.txt │ ├── center.png │ ├── cursor.png │ ├── deletE_edge.png │ ├── delete_node.png │ ├── details.png │ ├── dot.PNG │ ├── edge.png │ ├── find_edge.png │ ├── find_node.png │ ├── fish.PNG │ ├── fisheye.png │ ├── fisheye.raw │ ├── fit.png │ ├── fit_to_screen.png │ ├── glade-3.png │ ├── hourglass.png │ ├── lcirco.png │ ├── ldot.png │ ├── lfdp.png │ ├── lneato.png │ ├── ltwopi.png │ ├── magifier_zoom_out.png │ ├── magnifier.png │ ├── magnifier_zoom_in.png │ ├── mod_3D.png │ ├── mod_fisheye.png │ ├── mouse_actions.txt │ ├── move.png │ ├── new_delete.png │ ├── new_node.png │ ├── newzoom.png │ ├── no_fisheye.png │ ├── node.png │ ├── ok.raw │ ├── ok2.raw │ ├── ok3.raw │ ├── pan.png │ ├── pan.raw │ ├── preview.png │ ├── rect_select.png │ ├── rect_select2.png │ ├── rotate.png │ ├── rotate.raw │ ├── select.png │ ├── selectr.png │ ├── selectx.png │ ├── single_select.png │ ├── smyrna.glade │ ├── template.dot │ ├── zoom.png │ ├── zoom.raw │ ├── zoom_in.png │ ├── zoom_out.png │ ├── zoomin.png │ ├── zoomminus.raw │ ├── zoomout.png │ └── zoomplus.raw ├── tclpkg ├── Makefile.am ├── gdtclft │ ├── Makefile.am │ ├── demo │ │ ├── Makefile.am │ │ ├── entities.README │ │ ├── entities.html │ │ ├── entities.tcl │ │ └── entities.tcl.README │ ├── examples │ │ ├── allchars.tcl │ │ ├── arc.tcl │ │ ├── demoin.png │ │ ├── gddemo.tcl │ │ ├── getenttree.tcl │ │ ├── kaitest.tcl │ │ ├── sample.tcl │ │ ├── test.tcl │ │ ├── tst.tcl │ │ └── writePNGvar.tcl │ ├── gdtclft.3tcl │ └── gdtclft.c ├── gv │ ├── META.gv.in │ ├── Makefile.am │ ├── demo │ │ ├── Makefile.am │ │ ├── modgraph.lua │ │ ├── modgraph.php │ │ ├── modgraph.pl │ │ ├── modgraph.py │ │ ├── modgraph.rb │ │ └── modgraph.tcl │ ├── examples │ │ ├── layout.py │ │ └── simple.py │ ├── gv.cpp │ ├── gv.i │ ├── gv_builtins.c │ ├── gv_doc_langs.tcl │ ├── gv_doc_template.tcl │ ├── gv_doc_writer.tcl │ ├── gv_dummy_init.c │ ├── gv_java_init.c │ ├── gv_php_init.c │ ├── gv_tcl_init.c │ ├── gvgotest.go │ ├── hello.gv │ ├── test.cs │ ├── test.guile │ ├── test.java │ ├── test.lua │ ├── test.php │ ├── test.pl │ ├── test.py │ ├── test.rb │ └── test.tcl ├── mkpkgindex.sh ├── tcldot │ ├── Makefile.am │ ├── README │ ├── README.Tkspline │ ├── demo │ │ ├── Makefile.am │ │ ├── doted.tcl │ │ ├── doted.tcl.README │ │ ├── gcat.tcl │ │ └── gcat.tcl.README │ ├── examples │ │ ├── cyclic │ │ ├── data │ │ │ ├── a.html │ │ │ ├── b.html │ │ │ ├── c.html │ │ │ ├── d.html │ │ │ ├── default.html │ │ │ ├── demo.gv │ │ │ ├── e.html │ │ │ ├── edge.html │ │ │ ├── poly.gv │ │ │ └── smbluewhite_paper.gif │ │ ├── disp │ │ ├── gdtest │ │ ├── giffont │ │ ├── neatoed │ │ ├── psdisp │ │ ├── structs.tcl │ │ ├── tst │ │ ├── tw │ │ └── xvdisp │ ├── no_builtins.c │ ├── tcldot-edgecmd.c │ ├── tcldot-graphcmd.c │ ├── tcldot-id.c │ ├── tcldot-io.c │ ├── tcldot-nodecmd.c │ ├── tcldot-util.c │ ├── tcldot.3tcl │ ├── tcldot.c │ ├── tcldot.h │ ├── tcldot.html │ └── tcldot_builtins.c ├── tclhandle │ ├── Makefile.am │ ├── tclhandle.c │ └── tclhandle.h ├── tclpathplan │ ├── Makefile.am │ ├── demo │ │ ├── Makefile.am │ │ ├── pathplan.tcl │ │ ├── pathplan.tcl.README │ │ └── pathplan_data │ │ │ ├── Makefile.am │ │ │ ├── boxes.dat │ │ │ ├── dpd.dat │ │ │ ├── funny.dat │ │ │ ├── maze.dat │ │ │ ├── nested.dat │ │ │ ├── northo.dat │ │ │ ├── obs.dat │ │ │ ├── other.dat │ │ │ ├── paths.dat │ │ │ ├── rotor.dat │ │ │ ├── u.dat │ │ │ └── unknown.dat │ ├── find_ints.c │ ├── intersect.c │ ├── makecw.c │ ├── simple.h │ ├── tclpathplan.c │ └── wrapper.c ├── tclstubs │ ├── Makefile.am │ ├── README │ ├── tclInt.h │ └── tclStubLib.c ├── tkspline │ ├── CHANGES │ ├── Makefile.am │ ├── README │ ├── demo │ │ ├── Makefile.am │ │ ├── spline.tcl │ │ └── spline.tcl.README │ ├── dllEntry.c │ ├── tkspline.3tk │ └── tkspline.c └── tkstubs │ ├── Makefile.am │ ├── README │ ├── tkInt.h │ ├── tkStubImg.c │ └── tkStubLib.c ├── tests ├── CMakeLists.txt ├── Makefile.am ├── regression_tests │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── regression_test_helpers.py │ ├── regression_tests.bat │ └── shapes │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── reference │ │ ├── Mcircle.gv │ │ ├── Mcircle.svg │ │ ├── Mcircle.xdot │ │ ├── Mdiamond.gv │ │ ├── Mdiamond.svg │ │ ├── Mdiamond.xdot │ │ ├── Msquare.gv │ │ ├── Msquare.svg │ │ ├── Msquare.xdot │ │ ├── assembly.gv │ │ ├── assembly.svg │ │ ├── assembly.xdot │ │ ├── box.gv │ │ ├── box.svg │ │ ├── box.xdot │ │ ├── box3d.gv │ │ ├── box3d.svg │ │ ├── box3d.xdot │ │ ├── cds.gv │ │ ├── cds.svg │ │ ├── cds.xdot │ │ ├── circle.gv │ │ ├── circle.svg │ │ ├── circle.xdot │ │ ├── component.gv │ │ ├── component.svg │ │ ├── component.xdot │ │ ├── cylinder.gv │ │ ├── cylinder.svg │ │ ├── cylinder.xdot │ │ ├── diamond.gv │ │ ├── diamond.svg │ │ ├── diamond.xdot │ │ ├── doublecircle.gv │ │ ├── doublecircle.svg │ │ ├── doublecircle.xdot │ │ ├── doubleoctagon.gv │ │ ├── doubleoctagon.svg │ │ ├── doubleoctagon.xdot │ │ ├── egg.gv │ │ ├── egg.svg │ │ ├── egg.xdot │ │ ├── ellipse.gv │ │ ├── ellipse.svg │ │ ├── ellipse.xdot │ │ ├── fivepoverhang.gv │ │ ├── fivepoverhang.svg │ │ ├── fivepoverhang.xdot │ │ ├── folder.gv │ │ ├── folder.svg │ │ ├── folder.xdot │ │ ├── hexagon.gv │ │ ├── hexagon.svg │ │ ├── hexagon.xdot │ │ ├── house.gv │ │ ├── house.svg │ │ ├── house.xdot │ │ ├── insulator.gv │ │ ├── insulator.svg │ │ ├── insulator.xdot │ │ ├── invhouse.gv │ │ ├── invhouse.svg │ │ ├── invhouse.xdot │ │ ├── invtrapezium.gv │ │ ├── invtrapezium.svg │ │ ├── invtrapezium.xdot │ │ ├── invtriangle.gv │ │ ├── invtriangle.svg │ │ ├── invtriangle.xdot │ │ ├── larrow.gv │ │ ├── larrow.svg │ │ ├── larrow.xdot │ │ ├── lpromoter.gv │ │ ├── lpromoter.svg │ │ ├── lpromoter.xdot │ │ ├── none.gv │ │ ├── none.svg │ │ ├── none.xdot │ │ ├── note.gv │ │ ├── note.svg │ │ ├── note.xdot │ │ ├── noverhang.gv │ │ ├── noverhang.svg │ │ ├── noverhang.xdot │ │ ├── octagon.gv │ │ ├── octagon.svg │ │ ├── octagon.xdot │ │ ├── oval.gv │ │ ├── oval.svg │ │ ├── oval.xdot │ │ ├── parallelogram.gv │ │ ├── parallelogram.svg │ │ ├── parallelogram.xdot │ │ ├── pentagon.gv │ │ ├── pentagon.svg │ │ ├── pentagon.xdot │ │ ├── plain.gv │ │ ├── plain.svg │ │ ├── plain.xdot │ │ ├── plaintext.gv │ │ ├── plaintext.svg │ │ ├── plaintext.xdot │ │ ├── point.gv │ │ ├── point.svg │ │ ├── point.xdot │ │ ├── polygon.gv │ │ ├── polygon.svg │ │ ├── polygon.xdot │ │ ├── primersite.gv │ │ ├── primersite.svg │ │ ├── primersite.xdot │ │ ├── promoter.gv │ │ ├── promoter.svg │ │ ├── promoter.xdot │ │ ├── proteasesite.gv │ │ ├── proteasesite.svg │ │ ├── proteasesite.xdot │ │ ├── proteinstab.gv │ │ ├── proteinstab.svg │ │ ├── proteinstab.xdot │ │ ├── rarrow.gv │ │ ├── rarrow.svg │ │ ├── rarrow.xdot │ │ ├── rect.gv │ │ ├── rect.svg │ │ ├── rect.xdot │ │ ├── rectangle.gv │ │ ├── rectangle.svg │ │ ├── rectangle.xdot │ │ ├── restrictionsite.gv │ │ ├── restrictionsite.svg │ │ ├── restrictionsite.xdot │ │ ├── ribosite.gv │ │ ├── ribosite.svg │ │ ├── ribosite.xdot │ │ ├── rnastab.gv │ │ ├── rnastab.svg │ │ ├── rnastab.xdot │ │ ├── rpromoter.gv │ │ ├── rpromoter.svg │ │ ├── rpromoter.xdot │ │ ├── septagon.gv │ │ ├── septagon.svg │ │ ├── septagon.xdot │ │ ├── signature.gv │ │ ├── signature.svg │ │ ├── signature.xdot │ │ ├── square.gv │ │ ├── square.svg │ │ ├── square.xdot │ │ ├── star.gv │ │ ├── star.svg │ │ ├── star.xdot │ │ ├── tab.gv │ │ ├── tab.svg │ │ ├── tab.xdot │ │ ├── terminator.gv │ │ ├── terminator.svg │ │ ├── terminator.xdot │ │ ├── threepoverhang.gv │ │ ├── threepoverhang.svg │ │ ├── threepoverhang.xdot │ │ ├── trapezium.gv │ │ ├── trapezium.svg │ │ ├── trapezium.xdot │ │ ├── triangle.gv │ │ ├── triangle.svg │ │ ├── triangle.xdot │ │ ├── tripleoctagon.gv │ │ ├── tripleoctagon.svg │ │ ├── tripleoctagon.xdot │ │ ├── underline.gv │ │ ├── underline.svg │ │ ├── underline.xdot │ │ ├── utr.gv │ │ ├── utr.svg │ │ └── utr.xdot │ │ └── shapes.py └── unit_tests │ ├── Makefile.am │ └── lib │ ├── Makefile.am │ └── common │ ├── Makefile.am │ └── command_line.c └── windows ├── AttributeInspectorForm.Designer.cs ├── AttributeInspectorForm.cs ├── AttributeInspectorForm.resx ├── CMakeLists.txt ├── ExternalPropertyTab.cs ├── FormController.cs ├── Graph.cs ├── GraphArguments.cs ├── GraphDefaultAttributes.cs ├── GraphForm.Designer.cs ├── GraphForm.cs ├── GraphForm.resx ├── GraphPropertyDescriptor.cs ├── Graphviz.res ├── PathWatcher.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs.in ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── ActualSize.bmp ├── EdgeAttributes.png ├── GraphAttributes.png ├── Information.bmp ├── NodeAttributes.png ├── ZoomIn.bmp └── ZoomOut.bmp ├── ScrollableImageControl.Designer.cs ├── ScrollableImageControl.cs ├── StandardValuesTypeConverter.cs ├── TileableImagePrinter.cs ├── UTF8Marshaler.cs ├── addtopath.mst ├── bin ├── build.sh ├── gsetup.sh ├── runconf.sh └── win.sh ├── build.bat ├── build ├── Graphviz.ico ├── Makefile └── graphviz.wxs.in ├── build_stable.bat ├── cmd ├── dot │ └── makefile ├── dotty │ └── makefile ├── fc-fix │ ├── fc-fix.cpp │ ├── fc-fix.sln │ └── fc-fix.vcproj ├── gvpr │ └── gdefs.h ├── gvui │ ├── GVUI.exe │ ├── GVUI.vbp │ ├── GVUI.vbw │ ├── LayoutProperty.cls │ ├── LayoutPropertyInfo.cls │ ├── LayoutPropertyInfoSet.cls │ ├── LayoutPropertySet.cls │ ├── Main.bas │ ├── Other.bas │ ├── Process.bas │ ├── Registry.bas │ ├── frmLayoutControl.frm │ ├── frmLayoutControl.frx │ └── makefile ├── lefty │ ├── dot2l │ │ ├── dotparse.c │ │ └── dotparse.h │ └── makefile ├── lneato │ └── makefile ├── makefile └── tools │ └── makefile ├── getopt ├── CMakeLists.txt ├── getopt.c ├── getopt.h ├── getopt.vcxproj └── getopt.vcxproj.filters ├── graphviz-msi └── setup │ ├── Release │ └── setup.exe │ ├── setup.sln │ ├── setup.suo │ ├── setup.vdproj │ ├── setup_stable.sln │ └── setup_stable.vdproj ├── graphviz.csproj ├── graphviz.sln ├── gvedit ├── Application.h ├── Editor.ini ├── GraphX.bpr ├── GraphX.cpp ├── UAbout.cpp ├── UAbout.dfm ├── UAbout.h ├── UEditor.cpp ├── UEditor.dfm ├── UEditor.h ├── UPreProcess.cpp ├── UPreProcess.dfm ├── UPreProcess.h ├── UPreview.cpp ├── UPreview.dfm ├── UPreview.h ├── USettings.cpp ├── USettings.dfm ├── USettings.h ├── Umain.cpp ├── Umain.dfm ├── Umain.h └── props.txt ├── include ├── FEATURE │ └── sfio ├── builddate.h ├── config.h ├── exop.h ├── gdefs.h ├── ps_font_equiv.h └── unistd.h ├── install.bat ├── makefile ├── prebuild ├── Makefile ├── fontconfig.patch ├── gd.patch ├── gettext.patch ├── iconv.patch ├── pango.patch ├── pixman.patch └── zlib.patch ├── wmake.sh └── ws ├── graphviz.dsw └── tools.dsw /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tito/tito.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/.tito/tito.props -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | epl-v10.txt -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/ChangeLog -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/LICENSE -------------------------------------------------------------------------------- /Makeargs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/Makeargs -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/appveyor.yml -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/autogen.sh -------------------------------------------------------------------------------- /awk/brewer.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/awk/brewer.awk -------------------------------------------------------------------------------- /awk/colortbl.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/awk/colortbl.awk -------------------------------------------------------------------------------- /awk/stringize.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/awk/stringize.awk -------------------------------------------------------------------------------- /awk/svgcolor.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/awk/svgcolor.awk -------------------------------------------------------------------------------- /awk/typegraph.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/awk/typegraph.awk -------------------------------------------------------------------------------- /cmake/FindANN.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmake/FindANN.cmake -------------------------------------------------------------------------------- /cmake/FindAWK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmake/FindAWK.cmake -------------------------------------------------------------------------------- /cmake/FindGD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmake/FindGD.cmake -------------------------------------------------------------------------------- /cmake/FindLTDL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmake/FindLTDL.cmake -------------------------------------------------------------------------------- /cmake/FindNSIS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmake/FindNSIS.cmake -------------------------------------------------------------------------------- /cmd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/CMakeLists.txt -------------------------------------------------------------------------------- /cmd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/Makefile.am -------------------------------------------------------------------------------- /cmd/dot/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/dot/Makefile.am -------------------------------------------------------------------------------- /cmd/dot/dot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/dot/dot.1 -------------------------------------------------------------------------------- /cmd/dot/dot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/dot/dot.c -------------------------------------------------------------------------------- /cmd/dot/dot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/dot/dot.vcxproj -------------------------------------------------------------------------------- /cmd/dot/osage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/dot/osage.1 -------------------------------------------------------------------------------- /cmd/dot/patchwork.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/dot/patchwork.1 -------------------------------------------------------------------------------- /cmd/dotty/dotty.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/dotty/dotty.1 -------------------------------------------------------------------------------- /cmd/dotty/dotty.bsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/dotty/dotty.bsh -------------------------------------------------------------------------------- /cmd/dotty/dotty.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/dotty/dotty.ksh -------------------------------------------------------------------------------- /cmd/dotty/dotty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/dotty/dotty.sh -------------------------------------------------------------------------------- /cmd/dotty/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/dotty/notes -------------------------------------------------------------------------------- /cmd/gvedit/gvedit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvedit/gvedit.1 -------------------------------------------------------------------------------- /cmd/gvedit/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvedit/main.cpp -------------------------------------------------------------------------------- /cmd/gvedit/mdi.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvedit/mdi.qrc -------------------------------------------------------------------------------- /cmd/gvmap/cluster.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvmap/cluster.1 -------------------------------------------------------------------------------- /cmd/gvmap/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvmap/cluster.c -------------------------------------------------------------------------------- /cmd/gvmap/gvmap.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvmap/gvmap.1 -------------------------------------------------------------------------------- /cmd/gvmap/gvmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvmap/gvmap.c -------------------------------------------------------------------------------- /cmd/gvmap/gvmap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvmap/gvmap.sh -------------------------------------------------------------------------------- /cmd/gvmap/gvmap.sh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvmap/gvmap.sh.1 -------------------------------------------------------------------------------- /cmd/gvmap/gvmap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvmap/gvmap.sln -------------------------------------------------------------------------------- /cmd/gvmap/make_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvmap/make_map.c -------------------------------------------------------------------------------- /cmd/gvmap/make_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvmap/make_map.h -------------------------------------------------------------------------------- /cmd/gvmap/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvmap/power.c -------------------------------------------------------------------------------- /cmd/gvmap/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvmap/power.h -------------------------------------------------------------------------------- /cmd/gvpr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/Makefile.am -------------------------------------------------------------------------------- /cmd/gvpr/gvpr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/gvpr.1 -------------------------------------------------------------------------------- /cmd/gvpr/gvprmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/gvprmain.c -------------------------------------------------------------------------------- /cmd/gvpr/lib/anon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/anon -------------------------------------------------------------------------------- /cmd/gvpr/lib/attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/attr -------------------------------------------------------------------------------- /cmd/gvpr/lib/bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/bb -------------------------------------------------------------------------------- /cmd/gvpr/lib/bbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/bbox -------------------------------------------------------------------------------- /cmd/gvpr/lib/binduce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/binduce -------------------------------------------------------------------------------- /cmd/gvpr/lib/bipart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/bipart -------------------------------------------------------------------------------- /cmd/gvpr/lib/clustg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/clustg -------------------------------------------------------------------------------- /cmd/gvpr/lib/col: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/col -------------------------------------------------------------------------------- /cmd/gvpr/lib/color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/color -------------------------------------------------------------------------------- /cmd/gvpr/lib/cycle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/cycle -------------------------------------------------------------------------------- /cmd/gvpr/lib/dechain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/dechain -------------------------------------------------------------------------------- /cmd/gvpr/lib/deghist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/deghist -------------------------------------------------------------------------------- /cmd/gvpr/lib/depath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/depath -------------------------------------------------------------------------------- /cmd/gvpr/lib/flatten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/flatten -------------------------------------------------------------------------------- /cmd/gvpr/lib/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/group -------------------------------------------------------------------------------- /cmd/gvpr/lib/indent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/indent -------------------------------------------------------------------------------- /cmd/gvpr/lib/knbhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/knbhd -------------------------------------------------------------------------------- /cmd/gvpr/lib/maxdeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/maxdeg -------------------------------------------------------------------------------- /cmd/gvpr/lib/path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/path -------------------------------------------------------------------------------- /cmd/gvpr/lib/rotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/rotate -------------------------------------------------------------------------------- /cmd/gvpr/lib/scale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/scale -------------------------------------------------------------------------------- /cmd/gvpr/lib/scalexy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/scalexy -------------------------------------------------------------------------------- /cmd/gvpr/lib/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/span -------------------------------------------------------------------------------- /cmd/gvpr/lib/topon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/gvpr/lib/topon -------------------------------------------------------------------------------- /cmd/lefty/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/LOG -------------------------------------------------------------------------------- /cmd/lefty/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/code.c -------------------------------------------------------------------------------- /cmd/lefty/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/code.h -------------------------------------------------------------------------------- /cmd/lefty/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/colors.txt -------------------------------------------------------------------------------- /cmd/lefty/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/common.c -------------------------------------------------------------------------------- /cmd/lefty/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/common.h -------------------------------------------------------------------------------- /cmd/lefty/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/display.c -------------------------------------------------------------------------------- /cmd/lefty/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/display.h -------------------------------------------------------------------------------- /cmd/lefty/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/exec.c -------------------------------------------------------------------------------- /cmd/lefty/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/exec.h -------------------------------------------------------------------------------- /cmd/lefty/g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/g.c -------------------------------------------------------------------------------- /cmd/lefty/g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/g.h -------------------------------------------------------------------------------- /cmd/lefty/gfxview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/gfxview.c -------------------------------------------------------------------------------- /cmd/lefty/gfxview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/gfxview.h -------------------------------------------------------------------------------- /cmd/lefty/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/internal.c -------------------------------------------------------------------------------- /cmd/lefty/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/internal.h -------------------------------------------------------------------------------- /cmd/lefty/lefty.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/lefty.1 -------------------------------------------------------------------------------- /cmd/lefty/lefty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/lefty.c -------------------------------------------------------------------------------- /cmd/lefty/lefty.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/lefty.psp -------------------------------------------------------------------------------- /cmd/lefty/leftyio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/leftyio.h -------------------------------------------------------------------------------- /cmd/lefty/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/lex.c -------------------------------------------------------------------------------- /cmd/lefty/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/lex.h -------------------------------------------------------------------------------- /cmd/lefty/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/mem.c -------------------------------------------------------------------------------- /cmd/lefty/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/mem.h -------------------------------------------------------------------------------- /cmd/lefty/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/parse.c -------------------------------------------------------------------------------- /cmd/lefty/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/parse.h -------------------------------------------------------------------------------- /cmd/lefty/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/str.c -------------------------------------------------------------------------------- /cmd/lefty/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/str.h -------------------------------------------------------------------------------- /cmd/lefty/tbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/tbl.c -------------------------------------------------------------------------------- /cmd/lefty/tbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/tbl.h -------------------------------------------------------------------------------- /cmd/lefty/txtview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/txtview.c -------------------------------------------------------------------------------- /cmd/lefty/txtview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lefty/txtview.h -------------------------------------------------------------------------------- /cmd/lneato/lneato.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lneato/lneato.1 -------------------------------------------------------------------------------- /cmd/lneato/lneato.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/lneato/lneato.sh -------------------------------------------------------------------------------- /cmd/mingle/mingle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/mingle/mingle.1 -------------------------------------------------------------------------------- /cmd/smyrna/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/TODO -------------------------------------------------------------------------------- /cmd/smyrna/arcball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/arcball.c -------------------------------------------------------------------------------- /cmd/smyrna/arcball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/arcball.h -------------------------------------------------------------------------------- /cmd/smyrna/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/btree.c -------------------------------------------------------------------------------- /cmd/smyrna/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/btree.h -------------------------------------------------------------------------------- /cmd/smyrna/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/draw.c -------------------------------------------------------------------------------- /cmd/smyrna/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/draw.h -------------------------------------------------------------------------------- /cmd/smyrna/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/filter.c -------------------------------------------------------------------------------- /cmd/smyrna/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/filter.h -------------------------------------------------------------------------------- /cmd/smyrna/gui/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/gui/gui.c -------------------------------------------------------------------------------- /cmd/smyrna/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/gui/gui.h -------------------------------------------------------------------------------- /cmd/smyrna/hier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/hier.c -------------------------------------------------------------------------------- /cmd/smyrna/hier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/hier.h -------------------------------------------------------------------------------- /cmd/smyrna/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/main.c -------------------------------------------------------------------------------- /cmd/smyrna/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/md5.c -------------------------------------------------------------------------------- /cmd/smyrna/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/md5.h -------------------------------------------------------------------------------- /cmd/smyrna/smyrna.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/smyrna.1 -------------------------------------------------------------------------------- /cmd/smyrna/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/support.c -------------------------------------------------------------------------------- /cmd/smyrna/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/support.h -------------------------------------------------------------------------------- /cmd/smyrna/tvnodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/tvnodes.c -------------------------------------------------------------------------------- /cmd/smyrna/tvnodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/smyrna/tvnodes.h -------------------------------------------------------------------------------- /cmd/tools/acyclic.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/acyclic.1 -------------------------------------------------------------------------------- /cmd/tools/acyclic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/acyclic.c -------------------------------------------------------------------------------- /cmd/tools/bcomps.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/bcomps.1 -------------------------------------------------------------------------------- /cmd/tools/bcomps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/bcomps.c -------------------------------------------------------------------------------- /cmd/tools/ccomps.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/ccomps.1 -------------------------------------------------------------------------------- /cmd/tools/ccomps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/ccomps.c -------------------------------------------------------------------------------- /cmd/tools/colortbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/colortbl.h -------------------------------------------------------------------------------- /cmd/tools/colxlate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/colxlate.c -------------------------------------------------------------------------------- /cmd/tools/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/convert.h -------------------------------------------------------------------------------- /cmd/tools/cvtgxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/cvtgxl.c -------------------------------------------------------------------------------- /cmd/tools/dijkstra.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/dijkstra.1 -------------------------------------------------------------------------------- /cmd/tools/dijkstra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/dijkstra.c -------------------------------------------------------------------------------- /cmd/tools/gc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gc.1 -------------------------------------------------------------------------------- /cmd/tools/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gc.c -------------------------------------------------------------------------------- /cmd/tools/gc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gc.vcxproj -------------------------------------------------------------------------------- /cmd/tools/gml2gv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gml2gv.1 -------------------------------------------------------------------------------- /cmd/tools/gml2gv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gml2gv.c -------------------------------------------------------------------------------- /cmd/tools/gml2gv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gml2gv.h -------------------------------------------------------------------------------- /cmd/tools/gml2gv.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gml2gv.ncb -------------------------------------------------------------------------------- /cmd/tools/gml2gv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gml2gv.sln -------------------------------------------------------------------------------- /cmd/tools/gmlparse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gmlparse.y -------------------------------------------------------------------------------- /cmd/tools/gmlscan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gmlscan.l -------------------------------------------------------------------------------- /cmd/tools/gv2gml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gv2gml.c -------------------------------------------------------------------------------- /cmd/tools/gv2gxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gv2gxl.c -------------------------------------------------------------------------------- /cmd/tools/gvcolor.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gvcolor.1 -------------------------------------------------------------------------------- /cmd/tools/gvcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gvcolor.c -------------------------------------------------------------------------------- /cmd/tools/gvgen.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gvgen.1 -------------------------------------------------------------------------------- /cmd/tools/gvgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gvgen.c -------------------------------------------------------------------------------- /cmd/tools/gvpack.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gvpack.1 -------------------------------------------------------------------------------- /cmd/tools/gvpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gvpack.c -------------------------------------------------------------------------------- /cmd/tools/gxl2gv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gxl2gv.1 -------------------------------------------------------------------------------- /cmd/tools/gxl2gv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/gxl2gv.c -------------------------------------------------------------------------------- /cmd/tools/mm2gv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/mm2gv.1 -------------------------------------------------------------------------------- /cmd/tools/mm2gv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/mm2gv.c -------------------------------------------------------------------------------- /cmd/tools/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/mmio.c -------------------------------------------------------------------------------- /cmd/tools/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/mmio.h -------------------------------------------------------------------------------- /cmd/tools/nop.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/nop.1 -------------------------------------------------------------------------------- /cmd/tools/nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/nop.c -------------------------------------------------------------------------------- /cmd/tools/sccmap.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/sccmap.1 -------------------------------------------------------------------------------- /cmd/tools/sccmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/sccmap.c -------------------------------------------------------------------------------- /cmd/tools/tred.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/tred.1 -------------------------------------------------------------------------------- /cmd/tools/tred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/tred.c -------------------------------------------------------------------------------- /cmd/tools/tred2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cmd/tools/tred2.c -------------------------------------------------------------------------------- /compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/compat.h -------------------------------------------------------------------------------- /config-cmake.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/config-cmake.h.in -------------------------------------------------------------------------------- /config.iffe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/config.iffe -------------------------------------------------------------------------------- /config/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/config/config.rpath -------------------------------------------------------------------------------- /config/config_tcl.tcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/contrib/INDEX -------------------------------------------------------------------------------- /contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/contrib/Makefile.am -------------------------------------------------------------------------------- /contrib/dotmcl.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/contrib/dotmcl.pl -------------------------------------------------------------------------------- /contrib/prune/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/contrib/prune/README -------------------------------------------------------------------------------- /contrib/webdot.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/contrib/webdot.cgi -------------------------------------------------------------------------------- /cpl1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/cpl1.0.txt -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- 1 | See /usr/share/doc/quilt/README.source 2 | 3 | -------------------------------------------------------------------------------- /debian/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/debian/TODO -------------------------------------------------------------------------------- /debian/changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/debian/changelog.in -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/graphviz.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/debian/graphviz.menu -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /debian/pyversions: -------------------------------------------------------------------------------- 1 | 2.4,2.5 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/watch.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/debian/watch.in -------------------------------------------------------------------------------- /developers: -------------------------------------------------------------------------------- 1 | Dwight Perry 2 | Emden Gansner 3 | John Ellson 4 | Yifan Hu 5 | -------------------------------------------------------------------------------- /distro_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/distro_notes.txt -------------------------------------------------------------------------------- /doc/Dot.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/Dot.ref -------------------------------------------------------------------------------- /doc/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/FAQ.html -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/addingLayout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/addingLayout.txt -------------------------------------------------------------------------------- /doc/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/build.html -------------------------------------------------------------------------------- /doc/char.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/char.html -------------------------------------------------------------------------------- /doc/docbook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/docbook/Makefile -------------------------------------------------------------------------------- /doc/dotguide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotguide.pdf -------------------------------------------------------------------------------- /doc/dotguide/box.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotguide/box.dot -------------------------------------------------------------------------------- /doc/dotguide/dot.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotguide/dot.dot -------------------------------------------------------------------------------- /doc/dotguide/egg.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotguide/egg.dot -------------------------------------------------------------------------------- /doc/dotguide/fsm.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotguide/fsm.dot -------------------------------------------------------------------------------- /doc/dotguide/inv.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotguide/inv.dot -------------------------------------------------------------------------------- /doc/dotguide/none.dot: -------------------------------------------------------------------------------- 1 | digraph G { 2 | node [style=filled,shape=none]; 3 | none; 4 | } 5 | -------------------------------------------------------------------------------- /doc/dotguide/tee.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotguide/tee.dot -------------------------------------------------------------------------------- /doc/dotguide/vee.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotguide/vee.dot -------------------------------------------------------------------------------- /doc/dotty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotty/Makefile -------------------------------------------------------------------------------- /doc/dotty/full.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotty/full.tex -------------------------------------------------------------------------------- /doc/dotty/head.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotty/head.tex -------------------------------------------------------------------------------- /doc/dotty/sec1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotty/sec1.tex -------------------------------------------------------------------------------- /doc/dotty/sec2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotty/sec2.tex -------------------------------------------------------------------------------- /doc/dotty/sec3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotty/sec3.tex -------------------------------------------------------------------------------- /doc/dotty/sec4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotty/sec4.tex -------------------------------------------------------------------------------- /doc/dotty/sec5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotty/sec5.tex -------------------------------------------------------------------------------- /doc/dotty/seca.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotty/seca.tex -------------------------------------------------------------------------------- /doc/dotty/secb.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dotty/secb.tex -------------------------------------------------------------------------------- /doc/dotty/tail.tex: -------------------------------------------------------------------------------- 1 | \end{document} 2 | -------------------------------------------------------------------------------- /doc/dottyguide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/dottyguide.pdf -------------------------------------------------------------------------------- /doc/fontfaq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/fontfaq.txt -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/info/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/Makefile.am -------------------------------------------------------------------------------- /doc/info/Mcircle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/Mcircle.gif -------------------------------------------------------------------------------- /doc/info/Msquare.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/Msquare.gif -------------------------------------------------------------------------------- /doc/info/a_box.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/a_box.gif -------------------------------------------------------------------------------- /doc/info/a_crow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/a_crow.gif -------------------------------------------------------------------------------- /doc/info/a_curve.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/a_curve.gif -------------------------------------------------------------------------------- /doc/info/a_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/a_dot.gif -------------------------------------------------------------------------------- /doc/info/a_empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/a_empty.gif -------------------------------------------------------------------------------- /doc/info/a_inv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/a_inv.gif -------------------------------------------------------------------------------- /doc/info/a_none.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/a_none.gif -------------------------------------------------------------------------------- /doc/info/a_obox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/a_obox.gif -------------------------------------------------------------------------------- /doc/info/a_odot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/a_odot.gif -------------------------------------------------------------------------------- /doc/info/a_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/a_open.gif -------------------------------------------------------------------------------- /doc/info/a_tee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/a_tee.gif -------------------------------------------------------------------------------- /doc/info/aa_box.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_box.gif -------------------------------------------------------------------------------- /doc/info/aa_crow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_crow.gif -------------------------------------------------------------------------------- /doc/info/aa_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_dot.gif -------------------------------------------------------------------------------- /doc/info/aa_inv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_inv.gif -------------------------------------------------------------------------------- /doc/info/aa_lbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_lbox.gif -------------------------------------------------------------------------------- /doc/info/aa_linv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_linv.gif -------------------------------------------------------------------------------- /doc/info/aa_ltee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_ltee.gif -------------------------------------------------------------------------------- /doc/info/aa_lvee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_lvee.gif -------------------------------------------------------------------------------- /doc/info/aa_none.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_none.gif -------------------------------------------------------------------------------- /doc/info/aa_obox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_obox.gif -------------------------------------------------------------------------------- /doc/info/aa_odot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_odot.gif -------------------------------------------------------------------------------- /doc/info/aa_oinv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_oinv.gif -------------------------------------------------------------------------------- /doc/info/aa_rbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_rbox.gif -------------------------------------------------------------------------------- /doc/info/aa_rinv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_rinv.gif -------------------------------------------------------------------------------- /doc/info/aa_rtee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_rtee.gif -------------------------------------------------------------------------------- /doc/info/aa_rvee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_rvee.gif -------------------------------------------------------------------------------- /doc/info/aa_tee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_tee.gif -------------------------------------------------------------------------------- /doc/info/aa_vee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/aa_vee.gif -------------------------------------------------------------------------------- /doc/info/arrows.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/arrows.html -------------------------------------------------------------------------------- /doc/info/attrs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/attrs.html -------------------------------------------------------------------------------- /doc/info/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/back.gif -------------------------------------------------------------------------------- /doc/info/both.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/both.gif -------------------------------------------------------------------------------- /doc/info/box.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/box.gif -------------------------------------------------------------------------------- /doc/info/box3d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/box3d.gif -------------------------------------------------------------------------------- /doc/info/c_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/c_bold.png -------------------------------------------------------------------------------- /doc/info/c_solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/c_solid.png -------------------------------------------------------------------------------- /doc/info/cds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/cds.gif -------------------------------------------------------------------------------- /doc/info/circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/circle.gif -------------------------------------------------------------------------------- /doc/info/colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/colors.html -------------------------------------------------------------------------------- /doc/info/diamond.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/diamond.gif -------------------------------------------------------------------------------- /doc/info/e_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/e_bold.png -------------------------------------------------------------------------------- /doc/info/e_solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/e_solid.png -------------------------------------------------------------------------------- /doc/info/egg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/egg.gif -------------------------------------------------------------------------------- /doc/info/ellipse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/ellipse.gif -------------------------------------------------------------------------------- /doc/info/fill.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/fill.gif -------------------------------------------------------------------------------- /doc/info/fixed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/fixed.gif -------------------------------------------------------------------------------- /doc/info/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/folder.gif -------------------------------------------------------------------------------- /doc/info/forward.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/forward.gif -------------------------------------------------------------------------------- /doc/info/g_lin0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/g_lin0.png -------------------------------------------------------------------------------- /doc/info/g_lin45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/g_lin45.png -------------------------------------------------------------------------------- /doc/info/g_lin90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/g_lin90.png -------------------------------------------------------------------------------- /doc/info/g_rad0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/g_rad0.png -------------------------------------------------------------------------------- /doc/info/g_rad45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/g_rad45.png -------------------------------------------------------------------------------- /doc/info/g_rad90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/g_rad90.png -------------------------------------------------------------------------------- /doc/info/g_wlin0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/g_wlin0.png -------------------------------------------------------------------------------- /doc/info/hexagon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/hexagon.gif -------------------------------------------------------------------------------- /doc/info/house.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/house.gif -------------------------------------------------------------------------------- /doc/info/html1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/html1.gif -------------------------------------------------------------------------------- /doc/info/html2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/html2.gif -------------------------------------------------------------------------------- /doc/info/html2.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/html2.gv -------------------------------------------------------------------------------- /doc/info/html3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/html3.gif -------------------------------------------------------------------------------- /doc/info/html3.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/html3.gv -------------------------------------------------------------------------------- /doc/info/html4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/html4.gif -------------------------------------------------------------------------------- /doc/info/html4.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/html4.gv -------------------------------------------------------------------------------- /doc/info/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/index.html -------------------------------------------------------------------------------- /doc/info/lang.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/lang.html -------------------------------------------------------------------------------- /doc/info/larrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/larrow.gif -------------------------------------------------------------------------------- /doc/info/mrecord.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/mrecord.gif -------------------------------------------------------------------------------- /doc/info/n_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/n_bold.png -------------------------------------------------------------------------------- /doc/info/n_solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/n_solid.png -------------------------------------------------------------------------------- /doc/info/nohead.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/nohead.gif -------------------------------------------------------------------------------- /doc/info/none.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/none.gif -------------------------------------------------------------------------------- /doc/info/note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/note.gif -------------------------------------------------------------------------------- /doc/info/octagon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/octagon.gif -------------------------------------------------------------------------------- /doc/info/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/output.html -------------------------------------------------------------------------------- /doc/info/oval.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/oval.gif -------------------------------------------------------------------------------- /doc/info/plain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/plain.gif -------------------------------------------------------------------------------- /doc/info/plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/plugins.png -------------------------------------------------------------------------------- /doc/info/point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/point.gif -------------------------------------------------------------------------------- /doc/info/polygon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/polygon.gif -------------------------------------------------------------------------------- /doc/info/rarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/rarrow.gif -------------------------------------------------------------------------------- /doc/info/record.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/record.gif -------------------------------------------------------------------------------- /doc/info/record2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/record2.gif -------------------------------------------------------------------------------- /doc/info/rect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/rect.gif -------------------------------------------------------------------------------- /doc/info/rnastab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/rnastab.gif -------------------------------------------------------------------------------- /doc/info/round.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/round.gif -------------------------------------------------------------------------------- /doc/info/schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/schema.html -------------------------------------------------------------------------------- /doc/info/shapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/shapes.html -------------------------------------------------------------------------------- /doc/info/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/square.gif -------------------------------------------------------------------------------- /doc/info/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/star.gif -------------------------------------------------------------------------------- /doc/info/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/tab.gif -------------------------------------------------------------------------------- /doc/info/tee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/tee.gif -------------------------------------------------------------------------------- /doc/info/utr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/utr.gif -------------------------------------------------------------------------------- /doc/info/w3data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/info/w3data.js -------------------------------------------------------------------------------- /doc/infosrc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/Makefile -------------------------------------------------------------------------------- /doc/infosrc/arrows.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/arrows.1 -------------------------------------------------------------------------------- /doc/infosrc/arrows.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/arrows.2 -------------------------------------------------------------------------------- /doc/infosrc/attrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/attrs -------------------------------------------------------------------------------- /doc/infosrc/attrs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/attrs.1 -------------------------------------------------------------------------------- /doc/infosrc/back.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/back.dot -------------------------------------------------------------------------------- /doc/infosrc/both.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/both.dot -------------------------------------------------------------------------------- /doc/infosrc/colors.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/colors.1 -------------------------------------------------------------------------------- /doc/infosrc/colors.n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/colors.n -------------------------------------------------------------------------------- /doc/infosrc/eqn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/eqn.gif -------------------------------------------------------------------------------- /doc/infosrc/eqn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/eqn.png -------------------------------------------------------------------------------- /doc/infosrc/fill.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/fill.dot -------------------------------------------------------------------------------- /doc/infosrc/fixed.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/fixed.gv -------------------------------------------------------------------------------- /doc/infosrc/forward.dot: -------------------------------------------------------------------------------- 1 | digraph {rankdir=LR; T -> H } 2 | -------------------------------------------------------------------------------- /doc/infosrc/grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/grammar -------------------------------------------------------------------------------- /doc/infosrc/html.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/html.1 -------------------------------------------------------------------------------- /doc/infosrc/html.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/html.2 -------------------------------------------------------------------------------- /doc/infosrc/html.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/html.3 -------------------------------------------------------------------------------- /doc/infosrc/html2.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/html2.gv -------------------------------------------------------------------------------- /doc/infosrc/html3.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/html3.gv -------------------------------------------------------------------------------- /doc/infosrc/html4.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/html4.gv -------------------------------------------------------------------------------- /doc/infosrc/lang.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/lang.1 -------------------------------------------------------------------------------- /doc/infosrc/lang.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/lang.2 -------------------------------------------------------------------------------- /doc/infosrc/mklang.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/mklang.y -------------------------------------------------------------------------------- /doc/infosrc/output.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/output.1 -------------------------------------------------------------------------------- /doc/infosrc/output.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/output.2 -------------------------------------------------------------------------------- /doc/infosrc/outputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/outputs -------------------------------------------------------------------------------- /doc/infosrc/sdl.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/sdl.ps -------------------------------------------------------------------------------- /doc/infosrc/shapes.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/shapes.1 -------------------------------------------------------------------------------- /doc/infosrc/shapes.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/shapes.2 -------------------------------------------------------------------------------- /doc/infosrc/shapes.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/shapes.3 -------------------------------------------------------------------------------- /doc/infosrc/svg.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/svg.awk -------------------------------------------------------------------------------- /doc/infosrc/sz.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/sz.awk -------------------------------------------------------------------------------- /doc/infosrc/tee.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/tee.gv -------------------------------------------------------------------------------- /doc/infosrc/types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/infosrc/types -------------------------------------------------------------------------------- /doc/lefty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/lefty/Makefile -------------------------------------------------------------------------------- /doc/lefty/full.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/lefty/full.tex -------------------------------------------------------------------------------- /doc/lefty/head.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/lefty/head.tex -------------------------------------------------------------------------------- /doc/lefty/sec1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/lefty/sec1.tex -------------------------------------------------------------------------------- /doc/lefty/sec2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/lefty/sec2.tex -------------------------------------------------------------------------------- /doc/lefty/sec3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/lefty/sec3.tex -------------------------------------------------------------------------------- /doc/lefty/sec4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/lefty/sec4.tex -------------------------------------------------------------------------------- /doc/lefty/sec5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/lefty/sec5.tex -------------------------------------------------------------------------------- /doc/lefty/seca.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/lefty/seca.tex -------------------------------------------------------------------------------- /doc/lefty/secb.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/lefty/secb.tex -------------------------------------------------------------------------------- /doc/lefty/secc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/lefty/secc.tex -------------------------------------------------------------------------------- /doc/lefty/tail.tex: -------------------------------------------------------------------------------- 1 | \end{document} 2 | -------------------------------------------------------------------------------- /doc/leftyguide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/leftyguide.pdf -------------------------------------------------------------------------------- /doc/neato/ER.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/neato/ER.dot -------------------------------------------------------------------------------- /doc/neato/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/neato/Makefile -------------------------------------------------------------------------------- /doc/neato/fancy.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/neato/fancy.dot -------------------------------------------------------------------------------- /doc/neato/inet.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/neato/inet.dot -------------------------------------------------------------------------------- /doc/neato/jho.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/neato/jho.dot -------------------------------------------------------------------------------- /doc/neato/neato.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/neato/neato.tex -------------------------------------------------------------------------------- /doc/neatoguide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/neatoguide.pdf -------------------------------------------------------------------------------- /doc/oldlibguide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/oldlibguide.pdf -------------------------------------------------------------------------------- /doc/pspdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/pspdf.png -------------------------------------------------------------------------------- /doc/smyrna/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/smyrna/Makefile -------------------------------------------------------------------------------- /doc/smyrna/gui.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/smyrna/gui.tex -------------------------------------------------------------------------------- /doc/smyrna/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/smyrna/intro.tex -------------------------------------------------------------------------------- /doc/smyrna/using.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/smyrna/using.tex -------------------------------------------------------------------------------- /doc/todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/todo.html -------------------------------------------------------------------------------- /doc/winbuild.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/doc/winbuild.html -------------------------------------------------------------------------------- /dot.demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/dot.demo/Makefile -------------------------------------------------------------------------------- /dot.demo/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/dot.demo/demo.c -------------------------------------------------------------------------------- /dot.demo/demo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/dot.demo/demo.vcproj -------------------------------------------------------------------------------- /dot.demo/dot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/dot.demo/dot.c -------------------------------------------------------------------------------- /dot.demo/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/dot.demo/example.c -------------------------------------------------------------------------------- /dot.demo/gv_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/dot.demo/gv_test.py -------------------------------------------------------------------------------- /dot.demo/neatopack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/dot.demo/neatopack.c -------------------------------------------------------------------------------- /dot.demo/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/dot.demo/simple.c -------------------------------------------------------------------------------- /epl-v10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/epl-v10.html -------------------------------------------------------------------------------- /epl-v10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/epl-v10.txt -------------------------------------------------------------------------------- /epl_inserter.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/epl_inserter.tcl -------------------------------------------------------------------------------- /graphs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/graphs/Makefile.am -------------------------------------------------------------------------------- /graphviz.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/graphviz.7 -------------------------------------------------------------------------------- /graphviz.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/graphviz.appdata.xml -------------------------------------------------------------------------------- /graphviz.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/graphviz.sln -------------------------------------------------------------------------------- /graphviz.spec: -------------------------------------------------------------------------------- 1 | redhat/graphviz.spec.fedora -------------------------------------------------------------------------------- /iffe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/iffe -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | My Page 2 | -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/agraph/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/README -------------------------------------------------------------------------------- /lib/agraph/agerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/agerror.c -------------------------------------------------------------------------------- /lib/agraph/aghdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/aghdr.h -------------------------------------------------------------------------------- /lib/agraph/agraph.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/agraph.3 -------------------------------------------------------------------------------- /lib/agraph/agraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/agraph.h -------------------------------------------------------------------------------- /lib/agraph/apply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/apply.c -------------------------------------------------------------------------------- /lib/agraph/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/attr.c -------------------------------------------------------------------------------- /lib/agraph/cmpnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/cmpnd.c -------------------------------------------------------------------------------- /lib/agraph/dotdge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/dotdge.c -------------------------------------------------------------------------------- /lib/agraph/edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/edge.c -------------------------------------------------------------------------------- /lib/agraph/flatten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/flatten.c -------------------------------------------------------------------------------- /lib/agraph/grammar.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/grammar.y -------------------------------------------------------------------------------- /lib/agraph/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/graph.c -------------------------------------------------------------------------------- /lib/agraph/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/id.c -------------------------------------------------------------------------------- /lib/agraph/imap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/imap.c -------------------------------------------------------------------------------- /lib/agraph/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/io.c -------------------------------------------------------------------------------- /lib/agraph/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/main.c -------------------------------------------------------------------------------- /lib/agraph/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/malloc.h -------------------------------------------------------------------------------- /lib/agraph/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/mem.c -------------------------------------------------------------------------------- /lib/agraph/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/node.c -------------------------------------------------------------------------------- /lib/agraph/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/obj.c -------------------------------------------------------------------------------- /lib/agraph/pend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/pend.c -------------------------------------------------------------------------------- /lib/agraph/rec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/rec.c -------------------------------------------------------------------------------- /lib/agraph/refstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/refstr.c -------------------------------------------------------------------------------- /lib/agraph/scan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/scan.l -------------------------------------------------------------------------------- /lib/agraph/subg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/subg.c -------------------------------------------------------------------------------- /lib/agraph/tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/tester.c -------------------------------------------------------------------------------- /lib/agraph/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/utils.c -------------------------------------------------------------------------------- /lib/agraph/vmstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/vmstub.h -------------------------------------------------------------------------------- /lib/agraph/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agraph/write.c -------------------------------------------------------------------------------- /lib/agutil/agutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agutil/agutil.h -------------------------------------------------------------------------------- /lib/agutil/dynattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agutil/dynattr.c -------------------------------------------------------------------------------- /lib/agutil/nodeq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/agutil/nodeq.c -------------------------------------------------------------------------------- /lib/ast/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/Makefile.am -------------------------------------------------------------------------------- /lib/ast/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/align.h -------------------------------------------------------------------------------- /lib/ast/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/ast.h -------------------------------------------------------------------------------- /lib/ast/ast.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/ast.vcxproj -------------------------------------------------------------------------------- /lib/ast/chresc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/chresc.c -------------------------------------------------------------------------------- /lib/ast/chrtoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/chrtoi.c -------------------------------------------------------------------------------- /lib/ast/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/error.c -------------------------------------------------------------------------------- /lib/ast/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/error.h -------------------------------------------------------------------------------- /lib/ast/fmtbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/fmtbuf.c -------------------------------------------------------------------------------- /lib/ast/fmtesc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/fmtesc.c -------------------------------------------------------------------------------- /lib/ast/hashkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/hashkey.h -------------------------------------------------------------------------------- /lib/ast/pathaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/pathaccess.c -------------------------------------------------------------------------------- /lib/ast/pathbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/pathbin.c -------------------------------------------------------------------------------- /lib/ast/pathcanon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/pathcanon.c -------------------------------------------------------------------------------- /lib/ast/pathcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/pathcat.c -------------------------------------------------------------------------------- /lib/ast/pathexists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/pathexists.c -------------------------------------------------------------------------------- /lib/ast/pathfind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/pathfind.c -------------------------------------------------------------------------------- /lib/ast/pathpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/pathpath.c -------------------------------------------------------------------------------- /lib/ast/sfstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/sfstr.h -------------------------------------------------------------------------------- /lib/ast/strcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/strcopy.c -------------------------------------------------------------------------------- /lib/ast/stresc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/stresc.c -------------------------------------------------------------------------------- /lib/ast/strmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/strmatch.c -------------------------------------------------------------------------------- /lib/ast/strton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ast/strton.c -------------------------------------------------------------------------------- /lib/cdt/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/Makefile.am -------------------------------------------------------------------------------- /lib/cdt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/README -------------------------------------------------------------------------------- /lib/cdt/cdt.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/cdt.3 -------------------------------------------------------------------------------- /lib/cdt/cdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/cdt.h -------------------------------------------------------------------------------- /lib/cdt/cdt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/cdt.vcxproj -------------------------------------------------------------------------------- /lib/cdt/dtclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtclose.c -------------------------------------------------------------------------------- /lib/cdt/dtdisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtdisc.c -------------------------------------------------------------------------------- /lib/cdt/dtextract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtextract.c -------------------------------------------------------------------------------- /lib/cdt/dtflatten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtflatten.c -------------------------------------------------------------------------------- /lib/cdt/dthash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dthash.c -------------------------------------------------------------------------------- /lib/cdt/dthdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dthdr.h -------------------------------------------------------------------------------- /lib/cdt/dtlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtlist.c -------------------------------------------------------------------------------- /lib/cdt/dtmethod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtmethod.c -------------------------------------------------------------------------------- /lib/cdt/dtopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtopen.c -------------------------------------------------------------------------------- /lib/cdt/dtrenew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtrenew.c -------------------------------------------------------------------------------- /lib/cdt/dtrestore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtrestore.c -------------------------------------------------------------------------------- /lib/cdt/dtsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtsize.c -------------------------------------------------------------------------------- /lib/cdt/dtstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtstat.c -------------------------------------------------------------------------------- /lib/cdt/dtstrhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtstrhash.c -------------------------------------------------------------------------------- /lib/cdt/dttree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dttree.c -------------------------------------------------------------------------------- /lib/cdt/dtview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtview.c -------------------------------------------------------------------------------- /lib/cdt/dtwalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/dtwalk.c -------------------------------------------------------------------------------- /lib/cdt/libcdt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cdt/libcdt.pc.in -------------------------------------------------------------------------------- /lib/cgraph/agerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/agerror.c -------------------------------------------------------------------------------- /lib/cgraph/agxbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/agxbuf.c -------------------------------------------------------------------------------- /lib/cgraph/agxbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/agxbuf.h -------------------------------------------------------------------------------- /lib/cgraph/apply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/apply.c -------------------------------------------------------------------------------- /lib/cgraph/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/attr.c -------------------------------------------------------------------------------- /lib/cgraph/cghdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/cghdr.h -------------------------------------------------------------------------------- /lib/cgraph/cgraph.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/cgraph.3 -------------------------------------------------------------------------------- /lib/cgraph/cgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/cgraph.h -------------------------------------------------------------------------------- /lib/cgraph/cmpnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/cmpnd.c -------------------------------------------------------------------------------- /lib/cgraph/edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/edge.c -------------------------------------------------------------------------------- /lib/cgraph/flatten.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/flatten.c -------------------------------------------------------------------------------- /lib/cgraph/grammar.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/grammar.y -------------------------------------------------------------------------------- /lib/cgraph/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/graph.c -------------------------------------------------------------------------------- /lib/cgraph/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/id.c -------------------------------------------------------------------------------- /lib/cgraph/imap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/imap.c -------------------------------------------------------------------------------- /lib/cgraph/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/io.c -------------------------------------------------------------------------------- /lib/cgraph/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/main.c -------------------------------------------------------------------------------- /lib/cgraph/main1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/main1.c -------------------------------------------------------------------------------- /lib/cgraph/main2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/main2.c -------------------------------------------------------------------------------- /lib/cgraph/main3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/main3.c -------------------------------------------------------------------------------- /lib/cgraph/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/malloc.h -------------------------------------------------------------------------------- /lib/cgraph/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/mem.c -------------------------------------------------------------------------------- /lib/cgraph/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/node.c -------------------------------------------------------------------------------- /lib/cgraph/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/obj.c -------------------------------------------------------------------------------- /lib/cgraph/pend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/pend.c -------------------------------------------------------------------------------- /lib/cgraph/rec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/rec.c -------------------------------------------------------------------------------- /lib/cgraph/refstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/refstr.c -------------------------------------------------------------------------------- /lib/cgraph/scan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/scan.l -------------------------------------------------------------------------------- /lib/cgraph/subg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/subg.c -------------------------------------------------------------------------------- /lib/cgraph/tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/tester.c -------------------------------------------------------------------------------- /lib/cgraph/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/utils.c -------------------------------------------------------------------------------- /lib/cgraph/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/cgraph/write.c -------------------------------------------------------------------------------- /lib/circogen/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/circogen/block.c -------------------------------------------------------------------------------- /lib/circogen/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/circogen/block.h -------------------------------------------------------------------------------- /lib/circogen/circo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/circogen/circo.h -------------------------------------------------------------------------------- /lib/circogen/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/circogen/stack.c -------------------------------------------------------------------------------- /lib/circogen/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/circogen/stack.h -------------------------------------------------------------------------------- /lib/common/.indent.pro: -------------------------------------------------------------------------------- 1 | -kr -i4 -ts8 2 | -------------------------------------------------------------------------------- /lib/common/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/args.c -------------------------------------------------------------------------------- /lib/common/arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/arith.h -------------------------------------------------------------------------------- /lib/common/arrows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/arrows.c -------------------------------------------------------------------------------- /lib/common/chars.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/chars.tcl -------------------------------------------------------------------------------- /lib/common/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/color.h -------------------------------------------------------------------------------- /lib/common/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/const.h -------------------------------------------------------------------------------- /lib/common/diagen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/diagen.c -------------------------------------------------------------------------------- /lib/common/ellipse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/ellipse.c -------------------------------------------------------------------------------- /lib/common/emit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/emit.c -------------------------------------------------------------------------------- /lib/common/geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/geom.c -------------------------------------------------------------------------------- /lib/common/geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/geom.h -------------------------------------------------------------------------------- /lib/common/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/globals.c -------------------------------------------------------------------------------- /lib/common/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/globals.h -------------------------------------------------------------------------------- /lib/common/hpglgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/hpglgen.c -------------------------------------------------------------------------------- /lib/common/htmllex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/htmllex.c -------------------------------------------------------------------------------- /lib/common/htmllex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/htmllex.h -------------------------------------------------------------------------------- /lib/common/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/input.c -------------------------------------------------------------------------------- /lib/common/intset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/intset.c -------------------------------------------------------------------------------- /lib/common/intset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/intset.h -------------------------------------------------------------------------------- /lib/common/labels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/labels.c -------------------------------------------------------------------------------- /lib/common/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/logic.h -------------------------------------------------------------------------------- /lib/common/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/macros.h -------------------------------------------------------------------------------- /lib/common/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/memory.c -------------------------------------------------------------------------------- /lib/common/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/memory.h -------------------------------------------------------------------------------- /lib/common/mifgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/mifgen.c -------------------------------------------------------------------------------- /lib/common/mpgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/mpgen.c -------------------------------------------------------------------------------- /lib/common/ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/ns.c -------------------------------------------------------------------------------- /lib/common/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/output.c -------------------------------------------------------------------------------- /lib/common/picgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/picgen.c -------------------------------------------------------------------------------- /lib/common/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/render.h -------------------------------------------------------------------------------- /lib/common/shapes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/shapes.c -------------------------------------------------------------------------------- /lib/common/splines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/splines.c -------------------------------------------------------------------------------- /lib/common/taper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/taper.c -------------------------------------------------------------------------------- /lib/common/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/timing.c -------------------------------------------------------------------------------- /lib/common/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/timing.h -------------------------------------------------------------------------------- /lib/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/types.h -------------------------------------------------------------------------------- /lib/common/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/utils.c -------------------------------------------------------------------------------- /lib/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/utils.h -------------------------------------------------------------------------------- /lib/common/vtxgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/common/vtxgen.c -------------------------------------------------------------------------------- /lib/dotgen/acyclic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen/acyclic.c -------------------------------------------------------------------------------- /lib/dotgen/aspect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen/aspect.c -------------------------------------------------------------------------------- /lib/dotgen/aspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen/aspect.h -------------------------------------------------------------------------------- /lib/dotgen/class1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen/class1.c -------------------------------------------------------------------------------- /lib/dotgen/class2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen/class2.c -------------------------------------------------------------------------------- /lib/dotgen/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen/cluster.c -------------------------------------------------------------------------------- /lib/dotgen/conc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen/conc.c -------------------------------------------------------------------------------- /lib/dotgen/decomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen/decomp.c -------------------------------------------------------------------------------- /lib/dotgen/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen/dot.h -------------------------------------------------------------------------------- /lib/dotgen/dotinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen/dotinit.c -------------------------------------------------------------------------------- /lib/dotgen/fastgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen/fastgr.c -------------------------------------------------------------------------------- /lib/dotgen/flat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen/flat.c -------------------------------------------------------------------------------- /lib/dotgen/rank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen/rank.c -------------------------------------------------------------------------------- /lib/dotgen2/au_.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/au_.c -------------------------------------------------------------------------------- /lib/dotgen2/au_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/au_.h -------------------------------------------------------------------------------- /lib/dotgen2/bjm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/bjm.c -------------------------------------------------------------------------------- /lib/dotgen2/bjm0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/bjm0.c -------------------------------------------------------------------------------- /lib/dotgen2/ce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/ce.c -------------------------------------------------------------------------------- /lib/dotgen2/countx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/countx.c -------------------------------------------------------------------------------- /lib/dotgen2/decomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/decomp.c -------------------------------------------------------------------------------- /lib/dotgen2/dot2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/dot2.h -------------------------------------------------------------------------------- /lib/dotgen2/flat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/flat.c -------------------------------------------------------------------------------- /lib/dotgen2/groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/groups.c -------------------------------------------------------------------------------- /lib/dotgen2/groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/groups.h -------------------------------------------------------------------------------- /lib/dotgen2/level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/level.c -------------------------------------------------------------------------------- /lib/dotgen2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/main.c -------------------------------------------------------------------------------- /lib/dotgen2/minc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/minc.c -------------------------------------------------------------------------------- /lib/dotgen2/minc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/minc.h -------------------------------------------------------------------------------- /lib/dotgen2/minc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/minc2.c -------------------------------------------------------------------------------- /lib/dotgen2/newdot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/newdot.h -------------------------------------------------------------------------------- /lib/dotgen2/ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/ns.c -------------------------------------------------------------------------------- /lib/dotgen2/pos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/pos.c -------------------------------------------------------------------------------- /lib/dotgen2/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/queue.c -------------------------------------------------------------------------------- /lib/dotgen2/radix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/radix.c -------------------------------------------------------------------------------- /lib/dotgen2/radix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/radix.h -------------------------------------------------------------------------------- /lib/dotgen2/radix0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/radix0.c -------------------------------------------------------------------------------- /lib/dotgen2/radix1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/radix1.c -------------------------------------------------------------------------------- /lib/dotgen2/t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/t.c -------------------------------------------------------------------------------- /lib/dotgen2/t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/t1.c -------------------------------------------------------------------------------- /lib/dotgen2/t2.c: -------------------------------------------------------------------------------- 1 | main() 2 | { 3 | 4 | printf("%x\n",sbrk(0)); 5 | } 6 | -------------------------------------------------------------------------------- /lib/dotgen2/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/timing.c -------------------------------------------------------------------------------- /lib/dotgen2/xcoord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/xcoord.c -------------------------------------------------------------------------------- /lib/dotgen2/xpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/dotgen2/xpos.c -------------------------------------------------------------------------------- /lib/edgepaint/lab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/edgepaint/lab.c -------------------------------------------------------------------------------- /lib/edgepaint/lab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/edgepaint/lab.h -------------------------------------------------------------------------------- /lib/expr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/Makefile.am -------------------------------------------------------------------------------- /lib/expr/excc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/excc.c -------------------------------------------------------------------------------- /lib/expr/excontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/excontext.c -------------------------------------------------------------------------------- /lib/expr/exdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/exdata.c -------------------------------------------------------------------------------- /lib/expr/exerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/exerror.c -------------------------------------------------------------------------------- /lib/expr/exeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/exeval.c -------------------------------------------------------------------------------- /lib/expr/exexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/exexpr.c -------------------------------------------------------------------------------- /lib/expr/exgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/exgram.h -------------------------------------------------------------------------------- /lib/expr/exlexname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/exlexname.c -------------------------------------------------------------------------------- /lib/expr/exlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/exlib.h -------------------------------------------------------------------------------- /lib/expr/exnospace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/exnospace.c -------------------------------------------------------------------------------- /lib/expr/exopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/exopen.c -------------------------------------------------------------------------------- /lib/expr/exparse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/exparse.y -------------------------------------------------------------------------------- /lib/expr/expr.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/expr.3 -------------------------------------------------------------------------------- /lib/expr/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/expr.h -------------------------------------------------------------------------------- /lib/expr/exstash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/exstash.c -------------------------------------------------------------------------------- /lib/expr/extoken.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/extoken.c -------------------------------------------------------------------------------- /lib/expr/extype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/extype.c -------------------------------------------------------------------------------- /lib/expr/exzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/expr/exzero.c -------------------------------------------------------------------------------- /lib/fdpgen/comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/fdpgen/comp.c -------------------------------------------------------------------------------- /lib/fdpgen/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/fdpgen/comp.h -------------------------------------------------------------------------------- /lib/fdpgen/dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/fdpgen/dbg.c -------------------------------------------------------------------------------- /lib/fdpgen/dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/fdpgen/dbg.h -------------------------------------------------------------------------------- /lib/fdpgen/fdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/fdpgen/fdp.h -------------------------------------------------------------------------------- /lib/fdpgen/grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/fdpgen/grid.c -------------------------------------------------------------------------------- /lib/fdpgen/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/fdpgen/grid.h -------------------------------------------------------------------------------- /lib/graph/agxbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/graph/agxbuf.c -------------------------------------------------------------------------------- /lib/graph/agxbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/graph/agxbuf.h -------------------------------------------------------------------------------- /lib/graph/edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/graph/edge.c -------------------------------------------------------------------------------- /lib/graph/graph.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/graph/graph.3 -------------------------------------------------------------------------------- /lib/graph/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/graph/graph.c -------------------------------------------------------------------------------- /lib/graph/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/graph/graph.h -------------------------------------------------------------------------------- /lib/graph/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/graph/lexer.c -------------------------------------------------------------------------------- /lib/graph/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/graph/node.c -------------------------------------------------------------------------------- /lib/graph/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/graph/parser.y -------------------------------------------------------------------------------- /lib/graph/refstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/graph/refstr.c -------------------------------------------------------------------------------- /lib/graph/trie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/graph/trie.c -------------------------------------------------------------------------------- /lib/graph/triefa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/graph/triefa.h -------------------------------------------------------------------------------- /lib/gvc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc.def -------------------------------------------------------------------------------- /lib/gvc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc.vcxproj -------------------------------------------------------------------------------- /lib/gvc/.indent.pro: -------------------------------------------------------------------------------- 1 | -kr -i4 -ts8 2 | -------------------------------------------------------------------------------- /lib/gvc/gvc.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvc.3 -------------------------------------------------------------------------------- /lib/gvc/gvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvc.c -------------------------------------------------------------------------------- /lib/gvc/gvc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvc.def -------------------------------------------------------------------------------- /lib/gvc/gvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvc.h -------------------------------------------------------------------------------- /lib/gvc/gvcext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvcext.h -------------------------------------------------------------------------------- /lib/gvc/gvcint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvcint.h -------------------------------------------------------------------------------- /lib/gvc/gvcjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvcjob.h -------------------------------------------------------------------------------- /lib/gvc/gvcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvcommon.h -------------------------------------------------------------------------------- /lib/gvc/gvconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvconfig.c -------------------------------------------------------------------------------- /lib/gvc/gvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvconfig.h -------------------------------------------------------------------------------- /lib/gvc/gvcproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvcproc.h -------------------------------------------------------------------------------- /lib/gvc/gvdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvdevice.c -------------------------------------------------------------------------------- /lib/gvc/gvevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvevent.c -------------------------------------------------------------------------------- /lib/gvc/gvio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvio.h -------------------------------------------------------------------------------- /lib/gvc/gvjobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvjobs.c -------------------------------------------------------------------------------- /lib/gvc/gvlayout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvlayout.c -------------------------------------------------------------------------------- /lib/gvc/gvplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvplugin.c -------------------------------------------------------------------------------- /lib/gvc/gvplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvplugin.h -------------------------------------------------------------------------------- /lib/gvc/gvrender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvc/gvrender.c -------------------------------------------------------------------------------- /lib/gvpr/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/actions.c -------------------------------------------------------------------------------- /lib/gvpr/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/actions.h -------------------------------------------------------------------------------- /lib/gvpr/compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/compile.c -------------------------------------------------------------------------------- /lib/gvpr/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/compile.h -------------------------------------------------------------------------------- /lib/gvpr/gprdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/gprdata -------------------------------------------------------------------------------- /lib/gvpr/gvpr.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/gvpr.3 -------------------------------------------------------------------------------- /lib/gvpr/gvpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/gvpr.c -------------------------------------------------------------------------------- /lib/gvpr/gvpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/gvpr.h -------------------------------------------------------------------------------- /lib/gvpr/mkdefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/mkdefs.c -------------------------------------------------------------------------------- /lib/gvpr/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/parse.c -------------------------------------------------------------------------------- /lib/gvpr/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/parse.h -------------------------------------------------------------------------------- /lib/gvpr/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/queue.c -------------------------------------------------------------------------------- /lib/gvpr/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/queue.h -------------------------------------------------------------------------------- /lib/gvpr/trie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/trie.c -------------------------------------------------------------------------------- /lib/gvpr/trieFA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/gvpr/trieFA.h -------------------------------------------------------------------------------- /lib/label/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/label/index.c -------------------------------------------------------------------------------- /lib/label/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/label/index.h -------------------------------------------------------------------------------- /lib/label/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/label/node.c -------------------------------------------------------------------------------- /lib/label/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/label/node.h -------------------------------------------------------------------------------- /lib/mingle/ink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/mingle/ink.c -------------------------------------------------------------------------------- /lib/mingle/ink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/mingle/ink.h -------------------------------------------------------------------------------- /lib/neatogen/bfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/neatogen/bfs.c -------------------------------------------------------------------------------- /lib/neatogen/bfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/neatogen/bfs.h -------------------------------------------------------------------------------- /lib/neatogen/fPQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/neatogen/fPQ.h -------------------------------------------------------------------------------- /lib/neatogen/lu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/neatogen/lu.c -------------------------------------------------------------------------------- /lib/neatogen/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/neatogen/mem.h -------------------------------------------------------------------------------- /lib/neatogen/pca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/neatogen/pca.c -------------------------------------------------------------------------------- /lib/neatogen/pca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/neatogen/pca.h -------------------------------------------------------------------------------- /lib/ortho/fPQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ortho/fPQ.c -------------------------------------------------------------------------------- /lib/ortho/fPQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ortho/fPQ.h -------------------------------------------------------------------------------- /lib/ortho/maze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ortho/maze.c -------------------------------------------------------------------------------- /lib/ortho/maze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ortho/maze.h -------------------------------------------------------------------------------- /lib/ortho/ortho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ortho/ortho.c -------------------------------------------------------------------------------- /lib/ortho/ortho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ortho/ortho.h -------------------------------------------------------------------------------- /lib/ortho/sgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ortho/sgraph.c -------------------------------------------------------------------------------- /lib/ortho/sgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ortho/sgraph.h -------------------------------------------------------------------------------- /lib/ortho/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/ortho/trap.h -------------------------------------------------------------------------------- /lib/osage/osage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/osage/osage.h -------------------------------------------------------------------------------- /lib/pack/ccomps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/pack/ccomps.c -------------------------------------------------------------------------------- /lib/pack/pack.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/pack/pack.3 -------------------------------------------------------------------------------- /lib/pack/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/pack/pack.c -------------------------------------------------------------------------------- /lib/pack/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/pack/pack.h -------------------------------------------------------------------------------- /lib/pack/ptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/pack/ptest.c -------------------------------------------------------------------------------- /lib/pathplan/cvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/pathplan/cvt.c -------------------------------------------------------------------------------- /lib/pathplan/tri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/pathplan/tri.h -------------------------------------------------------------------------------- /lib/pathplan/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/pathplan/vis.h -------------------------------------------------------------------------------- /lib/rbtree/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/rbtree/CHANGES -------------------------------------------------------------------------------- /lib/rbtree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/rbtree/LICENSE -------------------------------------------------------------------------------- /lib/rbtree/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/rbtree/misc.c -------------------------------------------------------------------------------- /lib/rbtree/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/rbtree/misc.h -------------------------------------------------------------------------------- /lib/rbtree/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/rbtree/stack.c -------------------------------------------------------------------------------- /lib/rbtree/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/rbtree/stack.h -------------------------------------------------------------------------------- /lib/rbtree/test_rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/rbtree/test_rb -------------------------------------------------------------------------------- /lib/sfdpgen/sfdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfdpgen/sfdp.h -------------------------------------------------------------------------------- /lib/sfio/Make.state: -------------------------------------------------------------------------------- 1 | unithreaded 2 | -------------------------------------------------------------------------------- /lib/sfio/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/README -------------------------------------------------------------------------------- /lib/sfio/sfclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfclose.c -------------------------------------------------------------------------------- /lib/sfio/sfcvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfcvt.c -------------------------------------------------------------------------------- /lib/sfio/sfdisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfdisc.c -------------------------------------------------------------------------------- /lib/sfio/sfdlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfdlen.c -------------------------------------------------------------------------------- /lib/sfio/sfexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfexit.c -------------------------------------------------------------------------------- /lib/sfio/sffcvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sffcvt.c -------------------------------------------------------------------------------- /lib/sfio/sfgetd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfgetd.c -------------------------------------------------------------------------------- /lib/sfio/sfgetl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfgetl.c -------------------------------------------------------------------------------- /lib/sfio/sfgetm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfgetm.c -------------------------------------------------------------------------------- /lib/sfio/sfgetr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfgetr.c -------------------------------------------------------------------------------- /lib/sfio/sfgetu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfgetu.c -------------------------------------------------------------------------------- /lib/sfio/sfhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfhdr.h -------------------------------------------------------------------------------- /lib/sfio/sfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfio.h -------------------------------------------------------------------------------- /lib/sfio/sfio_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfio_t.h -------------------------------------------------------------------------------- /lib/sfio/sfllen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfllen.c -------------------------------------------------------------------------------- /lib/sfio/sfmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfmode.c -------------------------------------------------------------------------------- /lib/sfio/sfmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfmove.c -------------------------------------------------------------------------------- /lib/sfio/sfmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfmutex.c -------------------------------------------------------------------------------- /lib/sfio/sfnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfnew.c -------------------------------------------------------------------------------- /lib/sfio/sfnputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfnputc.c -------------------------------------------------------------------------------- /lib/sfio/sfopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfopen.c -------------------------------------------------------------------------------- /lib/sfio/sfpkrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfpkrd.c -------------------------------------------------------------------------------- /lib/sfio/sfpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfpoll.c -------------------------------------------------------------------------------- /lib/sfio/sfpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfpool.c -------------------------------------------------------------------------------- /lib/sfio/sfpopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfpopen.c -------------------------------------------------------------------------------- /lib/sfio/sfpurge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfpurge.c -------------------------------------------------------------------------------- /lib/sfio/sfputd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfputd.c -------------------------------------------------------------------------------- /lib/sfio/sfputl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfputl.c -------------------------------------------------------------------------------- /lib/sfio/sfputm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfputm.c -------------------------------------------------------------------------------- /lib/sfio/sfputr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfputr.c -------------------------------------------------------------------------------- /lib/sfio/sfputu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfputu.c -------------------------------------------------------------------------------- /lib/sfio/sfraise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfraise.c -------------------------------------------------------------------------------- /lib/sfio/sfrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfrd.c -------------------------------------------------------------------------------- /lib/sfio/sfread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfread.c -------------------------------------------------------------------------------- /lib/sfio/sfscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfscanf.c -------------------------------------------------------------------------------- /lib/sfio/sfseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfseek.c -------------------------------------------------------------------------------- /lib/sfio/sfset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfset.c -------------------------------------------------------------------------------- /lib/sfio/sfsetfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfsetfd.c -------------------------------------------------------------------------------- /lib/sfio/sfsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfsize.c -------------------------------------------------------------------------------- /lib/sfio/sfsk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfsk.c -------------------------------------------------------------------------------- /lib/sfio/sfstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfstack.c -------------------------------------------------------------------------------- /lib/sfio/sfswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfswap.c -------------------------------------------------------------------------------- /lib/sfio/sfsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfsync.c -------------------------------------------------------------------------------- /lib/sfio/sftable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sftable.c -------------------------------------------------------------------------------- /lib/sfio/sftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sftell.c -------------------------------------------------------------------------------- /lib/sfio/sftmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sftmp.c -------------------------------------------------------------------------------- /lib/sfio/sfwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfwr.c -------------------------------------------------------------------------------- /lib/sfio/sfwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/sfwrite.c -------------------------------------------------------------------------------- /lib/sfio/vthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sfio/vthread.h -------------------------------------------------------------------------------- /lib/sparse/DotIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sparse/DotIO.c -------------------------------------------------------------------------------- /lib/sparse/DotIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sparse/DotIO.h -------------------------------------------------------------------------------- /lib/sparse/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sparse/mq.c -------------------------------------------------------------------------------- /lib/sparse/mq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/sparse/mq.h -------------------------------------------------------------------------------- /lib/spine/quad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/spine/quad.c -------------------------------------------------------------------------------- /lib/spine/quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/spine/quad.h -------------------------------------------------------------------------------- /lib/spine/spine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/spine/spine.c -------------------------------------------------------------------------------- /lib/spine/spine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/spine/spine.h -------------------------------------------------------------------------------- /lib/spine/subset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/spine/subset.c -------------------------------------------------------------------------------- /lib/spine/subset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/spine/subset.h -------------------------------------------------------------------------------- /lib/vmalloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/vmalloc/README -------------------------------------------------------------------------------- /lib/vpsc/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/vpsc/block.cpp -------------------------------------------------------------------------------- /lib/vpsc/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/vpsc/block.h -------------------------------------------------------------------------------- /lib/vpsc/blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/vpsc/blocks.h -------------------------------------------------------------------------------- /lib/xdot/xdot.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/xdot/xdot.3 -------------------------------------------------------------------------------- /lib/xdot/xdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/xdot/xdot.c -------------------------------------------------------------------------------- /lib/xdot/xdot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/lib/xdot/xdot.h -------------------------------------------------------------------------------- /loadimage_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/loadimage_test.sh -------------------------------------------------------------------------------- /ltmain.sh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/ltmain.sh.patch -------------------------------------------------------------------------------- /m4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/m4/README -------------------------------------------------------------------------------- /m4/glib-gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/m4/glib-gettext.m4 -------------------------------------------------------------------------------- /m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/m4/iconv.m4 -------------------------------------------------------------------------------- /m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/m4/lib-ld.m4 -------------------------------------------------------------------------------- /m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/m4/lib-link.m4 -------------------------------------------------------------------------------- /m4/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/m4/lib-prefix.m4 -------------------------------------------------------------------------------- /m4/ming.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/m4/ming.m4 -------------------------------------------------------------------------------- /macosx/GVGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/macosx/GVGraph.h -------------------------------------------------------------------------------- /macosx/GVGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/macosx/GVGraph.m -------------------------------------------------------------------------------- /macosx/Graph.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/macosx/Graph.ai -------------------------------------------------------------------------------- /macosx/Graphviz.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/macosx/Graphviz.ai -------------------------------------------------------------------------------- /macosx/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/macosx/main.m -------------------------------------------------------------------------------- /plugin.demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/plugin.demo/README -------------------------------------------------------------------------------- /plugin.demo/xgtk/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugin.demo/xgtk/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugin.demo/xgtk/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugin.demo/xgtk/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/plugin/Makefile.am -------------------------------------------------------------------------------- /plugin/core/ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/plugin/core/ps.txt -------------------------------------------------------------------------------- /plugin/pango/gvplugin_pango.h: -------------------------------------------------------------------------------- 1 | #define FONT_DPI 96. 2 | -------------------------------------------------------------------------------- /redhat/graphviz.spec.rhel.in: -------------------------------------------------------------------------------- 1 | graphviz.spec.fedora.in -------------------------------------------------------------------------------- /rpm_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rpm_notes.txt -------------------------------------------------------------------------------- /rtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/Makefile.am -------------------------------------------------------------------------------- /rtest/cdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/cdiff.c -------------------------------------------------------------------------------- /rtest/doit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/doit -------------------------------------------------------------------------------- /rtest/dotdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/dotdiff -------------------------------------------------------------------------------- /rtest/doted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/doted -------------------------------------------------------------------------------- /rtest/graphs/ER.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/ER.gv -------------------------------------------------------------------------------- /rtest/graphs/a.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/a.gv -------------------------------------------------------------------------------- /rtest/graphs/b.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/b.gv -------------------------------------------------------------------------------- /rtest/graphs/b3.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/b3.gv -------------------------------------------------------------------------------- /rtest/graphs/b7.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/b7.gv -------------------------------------------------------------------------------- /rtest/graphs/center.gv: -------------------------------------------------------------------------------- 1 | digraph G { 2 | center=true 3 | a -> { b c} 4 | } 5 | -------------------------------------------------------------------------------- /rtest/graphs/d.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/d.gv -------------------------------------------------------------------------------- /rtest/graphs/dd.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/dd.gv -------------------------------------------------------------------------------- /rtest/graphs/in.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/in.gv -------------------------------------------------------------------------------- /rtest/graphs/p.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/p.gv -------------------------------------------------------------------------------- /rtest/graphs/p2.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/p2.gv -------------------------------------------------------------------------------- /rtest/graphs/p3.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/p3.gv -------------------------------------------------------------------------------- /rtest/graphs/p4.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/p4.gv -------------------------------------------------------------------------------- /rtest/graphs/ps.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/ps.gv -------------------------------------------------------------------------------- /rtest/graphs/ps_user_shapes.gv: -------------------------------------------------------------------------------- 1 | digraph G { 2 | n [label=""] 3 | } 4 | -------------------------------------------------------------------------------- /rtest/graphs/xx.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/graphs/xx.gv -------------------------------------------------------------------------------- /rtest/imagepath_test/delim.sed: -------------------------------------------------------------------------------- 1 | s:/:\\/:g 2 | -------------------------------------------------------------------------------- /rtest/rtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/rtest.sh -------------------------------------------------------------------------------- /rtest/share/ER.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/ER.gv -------------------------------------------------------------------------------- /rtest/share/ER.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/ER.ps -------------------------------------------------------------------------------- /rtest/share/NaN.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/NaN.gv -------------------------------------------------------------------------------- /rtest/share/a1.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/a1.gv -------------------------------------------------------------------------------- /rtest/share/a2.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/a2.gv -------------------------------------------------------------------------------- /rtest/share/a3.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/a3.gv -------------------------------------------------------------------------------- /rtest/share/alf.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/alf.gv -------------------------------------------------------------------------------- /rtest/share/b22.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b22.ps -------------------------------------------------------------------------------- /rtest/share/b29.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b29.gv -------------------------------------------------------------------------------- /rtest/share/b3.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b3.ps -------------------------------------------------------------------------------- /rtest/share/b33.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b33.ps -------------------------------------------------------------------------------- /rtest/share/b36.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b36.gv -------------------------------------------------------------------------------- /rtest/share/b51.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b51.gv -------------------------------------------------------------------------------- /rtest/share/b57.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b57.ps -------------------------------------------------------------------------------- /rtest/share/b68.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b68.ps -------------------------------------------------------------------------------- /rtest/share/b69.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b69.ps -------------------------------------------------------------------------------- /rtest/share/b7.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b7.ps -------------------------------------------------------------------------------- /rtest/share/b71.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b71.ps -------------------------------------------------------------------------------- /rtest/share/b77.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b77.ps -------------------------------------------------------------------------------- /rtest/share/b80.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b80.ps -------------------------------------------------------------------------------- /rtest/share/b94.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/b94.gv -------------------------------------------------------------------------------- /rtest/share/big.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/big.ps -------------------------------------------------------------------------------- /rtest/share/dfa.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/dfa.gv -------------------------------------------------------------------------------- /rtest/share/dpd.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/dpd.ps -------------------------------------------------------------------------------- /rtest/share/fsm.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/fsm.gv -------------------------------------------------------------------------------- /rtest/share/in.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/in.ps -------------------------------------------------------------------------------- /rtest/share/nhg.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/nhg.gv -------------------------------------------------------------------------------- /rtest/share/p.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/p.ps -------------------------------------------------------------------------------- /rtest/share/p2.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/p2.ps -------------------------------------------------------------------------------- /rtest/share/p3.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/p3.ps -------------------------------------------------------------------------------- /rtest/share/p4.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/p4.ps -------------------------------------------------------------------------------- /rtest/share/ps.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/ps.ps -------------------------------------------------------------------------------- /rtest/share/try.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/share/try.gv -------------------------------------------------------------------------------- /rtest/strps.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/strps.awk -------------------------------------------------------------------------------- /rtest/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/tests.txt -------------------------------------------------------------------------------- /rtest/whichcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/whichcc -------------------------------------------------------------------------------- /rtest/windows/p.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest/windows/p.ps -------------------------------------------------------------------------------- /rtest2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest2/Makefile -------------------------------------------------------------------------------- /rtest2/TESTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest2/TESTS -------------------------------------------------------------------------------- /rtest2/rtests.PLAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest2/rtests.PLAN -------------------------------------------------------------------------------- /rtest2/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/rtest2/test.tcl -------------------------------------------------------------------------------- /share/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = examples gui 2 | -------------------------------------------------------------------------------- /share/gui/2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/2D.png -------------------------------------------------------------------------------- /share/gui/3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/3D.png -------------------------------------------------------------------------------- /share/gui/dot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/dot.PNG -------------------------------------------------------------------------------- /share/gui/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/edge.png -------------------------------------------------------------------------------- /share/gui/fish.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/fish.PNG -------------------------------------------------------------------------------- /share/gui/fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/fit.png -------------------------------------------------------------------------------- /share/gui/ldot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/ldot.png -------------------------------------------------------------------------------- /share/gui/lfdp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/lfdp.png -------------------------------------------------------------------------------- /share/gui/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/move.png -------------------------------------------------------------------------------- /share/gui/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/node.png -------------------------------------------------------------------------------- /share/gui/ok.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/ok.raw -------------------------------------------------------------------------------- /share/gui/ok2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/ok2.raw -------------------------------------------------------------------------------- /share/gui/ok3.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/ok3.raw -------------------------------------------------------------------------------- /share/gui/pan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/pan.png -------------------------------------------------------------------------------- /share/gui/pan.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/pan.raw -------------------------------------------------------------------------------- /share/gui/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/zoom.png -------------------------------------------------------------------------------- /share/gui/zoom.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/share/gui/zoom.raw -------------------------------------------------------------------------------- /tclpkg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/tclpkg/Makefile.am -------------------------------------------------------------------------------- /tclpkg/gv/gv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/tclpkg/gv/gv.cpp -------------------------------------------------------------------------------- /tclpkg/gv/gv.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/tclpkg/gv/gv.i -------------------------------------------------------------------------------- /tclpkg/gv/hello.gv: -------------------------------------------------------------------------------- 1 | digraph G {hello->world} 2 | -------------------------------------------------------------------------------- /tclpkg/gv/test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/tclpkg/gv/test.cs -------------------------------------------------------------------------------- /tclpkg/gv/test.guile: -------------------------------------------------------------------------------- 1 | 2 | (load-extension "./libgv.so" "SWIG_init") 3 | 4 | 5 | -------------------------------------------------------------------------------- /tclpkg/gv/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/tclpkg/gv/test.lua -------------------------------------------------------------------------------- /tclpkg/gv/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/tclpkg/gv/test.php -------------------------------------------------------------------------------- /tclpkg/gv/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/tclpkg/gv/test.pl -------------------------------------------------------------------------------- /tclpkg/gv/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/tclpkg/gv/test.py -------------------------------------------------------------------------------- /tclpkg/gv/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/tclpkg/gv/test.rb -------------------------------------------------------------------------------- /tclpkg/gv/test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/tclpkg/gv/test.tcl -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/regression_tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(shapes) 2 | -------------------------------------------------------------------------------- /tests/regression_tests/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = shapes 2 | -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(getopt) 2 | -------------------------------------------------------------------------------- /windows/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/windows/Graph.cs -------------------------------------------------------------------------------- /windows/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/windows/Program.cs -------------------------------------------------------------------------------- /windows/bin/win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/windows/bin/win.sh -------------------------------------------------------------------------------- /windows/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/windows/build.bat -------------------------------------------------------------------------------- /windows/cmd/makefile: -------------------------------------------------------------------------------- 1 | :MAKE: 2 | -------------------------------------------------------------------------------- /windows/include/builddate.h: -------------------------------------------------------------------------------- 1 | #define BUILDDATE "20090106.0545" 2 | -------------------------------------------------------------------------------- /windows/makefile: -------------------------------------------------------------------------------- 1 | :MAKE: 2 | -------------------------------------------------------------------------------- /windows/wmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellson/MOTHBALLED-graphviz/HEAD/windows/wmake.sh --------------------------------------------------------------------------------