package GuaCaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. vertex_post : int array;
  2. vertex_ante : int array;
  3. vertex_root : int array;
  4. sorted_post : int array;
  5. sorted_ante : int array;
}
type v = {
  1. post : int;
  2. ante : int;
  3. root : int;
}
val check : int -> t -> bool
val debug : bool Stdlib.ref
val compute : ?vertex_order:int array option -> ('v, 'e) Type.graph -> t