package ocamlgraph

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type graph = [
  1. | `Bgcolor of color
  2. | `BgcolorWithTransparency of color_with_transparency
  3. | `Center of bool
  4. | `Comment of string
  5. | `Concentrate of bool
  6. | `Fontcolor of color
  7. | `Fontname of string
  8. | `Fontpath of string
  9. | `Fontsize of int
  10. | `Label of string
  11. | `Layers of string list
  12. | `Margin of float
  13. | `Mclimit of float
  14. | `Nodesep of float
  15. | `Nslimit of int
  16. | `Nslimit1 of int
  17. | `OrderingOut
  18. | `Orientation of [ `Landscape | `Portrait ]
  19. | `Page of float * float
  20. | `Pagedir of [ `LeftToRight | `TopToBottom ]
  21. | `Quantum of float
  22. | `Rankdir of [ `LeftToRight | `TopToBottom ]
  23. | `Ranksep of float
  24. | `Ratio of [ `Auto | `Compress | `Fill | `Float of float ]
  25. | `Samplepoints of int
  26. | `Size of float * float
  27. | `Url of string
]
type vertex = [
  1. | `Color of color
  2. | `ColorWithTransparency of color_with_transparency
  3. | `Comment of string
  4. | `Distortion of float
  5. | `Fillcolor of color
  6. | `FillcolorWithTransparency of color_with_transparency
  7. | `Fixedsize of bool
  8. | `Fontcolor of color
  9. | `Fontname of string
  10. | `Fontsize of int
  11. | `Height of float
  12. | `Label of string
  13. | `Layer of string
  14. | `Orientation of float
  15. | `Peripheries of int
  16. | `Regular of bool
  17. | `Shape of [ `Box | `Circle | `Diamond | `Doublecircle | `Ellipse | `Plaintext | `Polygon of int * float | `Record ]
  18. | `Style of [ `Bold | `Dashed | `Dotted | `Filled | `Invis | `Solid ]
  19. | `Url of string
  20. | `Width of float
  21. | `Z of float
]
type edge = [
  1. | `Arrowhead of arrow_style
  2. | `Arrowsize of float
  3. | `Arrowtail of arrow_style
  4. | `Color of color
  5. | `ColorWithTransparency of color_with_transparency
  6. | `Comment of string
  7. | `Constraint of bool
  8. | `Decorate of bool
  9. | `Dir of [ `Back | `Both | `Forward | `None ]
  10. | `Fontcolor of color
  11. | `Fontname of string
  12. | `Fontsize of int
  13. | `Headlabel of string
  14. | `Headport of [ `E | `N | `NE | `NW | `S | `SE | `SW | `W ]
  15. | `Headurl of string
  16. | `Label of string
  17. | `Labelangle of float
  18. | `Labeldistance of float
  19. | `Labelfloat of bool
  20. | `Labelfontcolor of color
  21. | `Labelfontname of string
  22. | `Labelfontsize of int
  23. | `Layer of string
  24. | `Minlen of int
  25. | `Samehead of string
  26. | `Sametail of string
  27. | `Style of [ `Bold | `Dashed | `Dotted | `Invis | `Solid ]
  28. | `Taillabel of string
  29. | `Tailport of [ `E | `N | `NE | `NW | `S | `SE | `SW | `W ]
  30. | `Tailurl of string
  31. | `Weight of int
]
type subgraph = {
  1. sg_name : string;
  2. sg_attributes : vertex list;
}
OCaml

Innovation. Community. Security.