package patoline

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

Parameters

Signature

type color =
  1. | Visited
  2. | Visiting
  3. | Virgin
type node = {
  1. id : X.t;
  2. mutable sons : node list;
  3. mutable color : color;
}
type graph = node list
val total_order : node list -> X.t list