package ocamlgraph

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

Imperative Graph Implementations.

module type S = sig ... end

Signature of imperative graphs.

module Digraph : sig ... end

Imperative Directed Graphs.

module Graph : S

Imperative Undirected Graphs.

module Matrix : sig ... end

Imperative graphs implemented as adjacency matrices.