You can search for identifiers within the package.
in-package search v0.2.0
Functorial interface.
module type Point = sig ... end
type quality =
| Good of int
We use a heuristic to find good vantage (reference) points. Currently, we only support n = 1 or 2.
type direction =
| Left
| 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