package knights_tour

  1. Overview
  2. Docs

Source file persist.ml

1
2
3
4
5
module type Persistable = sig
  type t
  val save : Out_channel.t -> t -> unit
  val load : In_channel.t -> t
end