package bst

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

Functorial interface.

module type Point = sig ... end
type quality =
  1. | Good of int

We use a heuristic to find good vantage (reference) points. Currently, we only support n = 1 or 2.

type direction =
  1. | Left
  2. | Right

To reach a point in the vpt, you need to follow a path. A path is a list of directions.

module type Config = sig ... end
module Make (P : Point) (C : Config) : sig ... end
OCaml

Innovation. Community. Security.