package lascar

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Types for controling the aspect of .dot output files

type graph_style = ..
type graph_style +=
  1. | SubGraph
    (*

    Draw graph as a subgraph (to be inserted in an enclosing graph)

    *)
  2. | RankdirUD
    (*

    Draw graph in the Up-down direction

    *)
  3. | RankdirLR
    (*

    Draw graph in the Left-right direction

    *)
type node_style = {
  1. node_shape : string;
  2. node_style : string;
}