package frenetic

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module type VERTEX = sig ... end
module type EDGE = sig ... end
module type WEIGHT = sig ... end
module type NETWORK = sig ... end
module type MAKE = functor (Vertex : VERTEX) -> functor (Edge : EDGE) -> NETWORK with module Topology.Vertex = Vertex and module Topology.Edge = Edge
module Make : MAKE
module Node : sig ... end
module Net : NETWORK with type Topology.Vertex.t = Node.t and type Topology.Edge.t = Link.t
module NetPath : Net.PATH with type weight = float