package knights_tour

  1. Overview
  2. Docs

Module Knights_tourSource

Sourcemodule Cache : sig ... end

Disk-based memoization utility for expensive computations. Uses Marshal for serialization and a hash function for cache keys.

Sourcemodule Fun : sig ... end
Sourcemodule Game : sig ... end
Sourcemodule Lines : sig ... end

Utilities for reading input one line at a time. The basic idea is that different types of input which can be read one line at a time can all be converted into a string Seq.t. Then any further manipulations / operations on this input can be done in a uniform way by operating on those.

Sourcemodule Point : sig ... end
Sourcemodule PointMap : sig ... end