sig
  type t = {
    mutable minor_heap_size : int;
    mutable major_heap_increment : int;
    mutable space_overhead : int;
    mutable verbose : int;
    mutable max_overhead : int;
    mutable stack_limit : int;
    mutable allocation_policy : int;
  }
  val bin_size_t : t Bin_prot.Size.sizer
  val bin_write_t : t Bin_prot.Map_to_safe.writer
  val bin_write_t_ : t Bin_prot.Unsafe_write_c.writer
  val bin_read_t : t Bin_prot.Read_ml.reader
  val bin_read_t_ : t Bin_prot.Unsafe_read_c.reader
  val bin_read_t__ : (int -> t) Bin_prot.Unsafe_read_c.reader
  val bin_writer_t : t Bin_prot.Type_class.writer
  val bin_reader_t : t Bin_prot.Type_class.reader
  val bin_t : t Bin_prot.Type_class.t
  val sexp_of_t : t -> Sexplib.Sexp.t
  val t_of_sexp : Sexplib.Sexp.t -> t
end