Module Libzipperposition_calculi.Simplex
module type OrderedType = sig ... endThe types of the variables used by the equations to solve
module type S = sig ... endmodule Make : functor (Var : OrderedType) -> S with type var = Var.tFunctor building an implementation of the simplex solver given a totally ordered type for the variables
Higher-Level Interface
module type HELPER = sig ... endmodule MakeHelp : functor (Var : OrderedType) -> HELPER with type external_var = Var.t