package ocamlgraph

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type graph = [
  1. | `Center of bool
  2. | `Fontcolor of color
  3. | `Fontname of string
  4. | `Fontsize of int
  5. | `Label of string
  6. | `Margin of float * float
  7. | `OrderingOut
  8. | `Orientation of [ `Landscape | `Portrait ]
  9. | `Overlap of bool
  10. | `Page of float * float
  11. | `Pagedir of [ `LeftToRight | `TopToBottom ]
  12. | `Sep of float
  13. | `Size of float * float
  14. | `Spline of bool
  15. | `Start of int
]
type vertex = [
  1. | `Color of color
  2. | `ColorWithTransparency of color_with_transparency
  3. | `Fontcolor of color
  4. | `Fontname of string
  5. | `Fontsize of int
  6. | `Height of float
  7. | `Label of string
  8. | `Orientation of float
  9. | `Peripheries of int
  10. | `Pos of float * float
  11. | `Regular of bool
  12. | `Shape of [ `Box | `Circle | `Diamond | `Doublecircle | `Ellipse | `Plaintext | `Polygon of int * float | `Record ]
  13. | `Style of [ `Bold | `Dashed | `Dotted | `Filled | `Invis | `Solid ]
  14. | `Width of float
]
type edge = [
  1. | `Color of color
  2. | `ColorWithTransparency of color_with_transparency
  3. | `Decorate of bool
  4. | `Dir of [ `Back | `Both | `Forward | `None ]
  5. | `Fontcolor of color
  6. | `Fontname of string
  7. | `Fontsize of int
  8. | `Id of string
  9. | `Label of string
  10. | `Labelfontcolor of color
  11. | `Labelfontname of string
  12. | `Labelfontsize of int
  13. | `Len of float
  14. | `Style of [ `Bold | `Dashed | `Dotted | `Invis | `Solid ]
  15. | `Weight of float
]
type subgraph = {
  1. sg_name : string;
  2. sg_attributes : vertex list;
}
OCaml

Innovation. Community. Security.