persist.ml
knights_tour
knights_tour.collections
knights_tour.pentominos
knights_tour.searchspace
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
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