package mlpost

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

Source file xdot_ast.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
type statement =
  | Graph of (string * string) list
  | Node of int * (string * string) list
  | Edge of int * int * (string * string) list

type file = statement option list

type point = float * float

type path = point list

type node = int * point

type edge = int * int * path

type digraph = {
  bounding_box : point * point;
  nodes : node list;
  edges : edge list;
}
OCaml

Innovation. Community. Security.