package rfsm

  1. Overview
  2. Docs
On This Page
  1. DOT backend
Legend:
Library
Module
Module type
Parameter
Class
Class type

DOT backend

module type DOT = sig ... end
type cfg = {
  1. mutable node_shape : string;
  2. mutable node_style : string;
  3. mutable layout : string;
  4. mutable rankdir : string;
  5. mutable mindist : float;
  6. mutable trans_vlayout : bool;
  7. mutable qual_ids : bool;
  8. mutable abbrev_types : bool;
  9. mutable show_models : bool;
  10. mutable show_captions : bool;
  11. mutable boxed : bool;
}
val cfg : cfg
module Make (S : Static.T) : DOT with module Static = S