package containers

  1. Overview
  2. Docs
type attribute = [
  1. | `Color of string
  2. | `Shape of string
  3. | `Weight of int
  4. | `Style of string
  5. | `Label of string
  6. | `Id of string
    (*

    Unique ID in the graph. Allows sharing.

    *)
  7. | `Other of string * string
]

Dot attributes for nodes

type graph = string * attribute list t list

A dot graph is a name, plus a list of trees labelled with attributes

val mk_id : ('a, Buffer.t, unit, attribute) Pervasives.format4 -> 'a

Using a formatter string, build an ID

val mk_label : ('a, Buffer.t, unit, attribute) Pervasives.format4 -> 'a

Using a formatter string, build a label

val make : name:string -> attribute list t list -> graph
val singleton : name:string -> attribute list t -> graph
val pp : graph printer

Print the graph in DOT

val pp_single : string -> attribute list t printer
val print : graph formatter

Printer with indentation, etc.

  • since 0.6.1
val print_to_file : string -> graph -> unit

print_to_file filename g prints g into a file whose name is filename.

  • since 0.6.1
val to_file : ?name:string -> string -> attribute list t list -> unit

to_file filename trees makes a graph out of the trees, opens the file filename and prints the graph into the file.

  • parameter name

    name of the graph

  • since 0.6.1