/usr/lib/ocaml/ocplib-simplex/basic.mli is in ocplib-simplex-ocaml-dev 0.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | (******************************************************************************)
(* ocplib-simplex *)
(* *)
(* Copyright (C) --- OCamlPro --- See README.md for information and licensing *)
(******************************************************************************)
module Make
(Var : ExtSigs.VAR_SIG)(R : ExtSigs.R_SIG)(Ex : ExtSigs.EX_SIG) : sig
module Core : CoreSig.SIG
with module Var=Var and module R=R and module Ex=Ex
module Assert : AssertBounds.SIG with module Core := Core
module Solve : SolveBounds.SIG with module Core := Core
module Result : Result.SIG with module Core := Core
end
|