From 9043add656177eeac1491a73d2f3ab92bec0013c Mon Sep 17 00:00:00 2001 From: Benjamin Barenblat Date: Sat, 29 Dec 2018 14:31:27 -0500 Subject: Imported Upstream version 8.8.2 --- vernac/indschemes.mli | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 vernac/indschemes.mli (limited to 'vernac/indschemes.mli') diff --git a/vernac/indschemes.mli b/vernac/indschemes.mli new file mode 100644 index 00000000..43915788 --- /dev/null +++ b/vernac/indschemes.mli @@ -0,0 +1,53 @@ +(************************************************************************) +(* * The Coq Proof Assistant / The Coq Development Team *) +(* v * INRIA, CNRS and contributors - Copyright 1999-2018 *) +(* unit + +val declare_eq_decidability : MutInd.t -> unit + +(** Build and register a congruence scheme for an equality-like inductive type *) + +val declare_congr_scheme : inductive -> unit + +(** Build and register rewriting schemes for an equality-like inductive type *) + +val declare_rewriting_schemes : inductive -> unit + +(** Mutual Minimality/Induction scheme. + [force_mutual] forces the construction of eliminators having the same predicates and + methods even if some of the inductives are not recursive. + By default it is [false] and some of the eliminators are defined as simple case analysis. + *) + +val do_mutual_induction_scheme : ?force_mutual:bool -> + (Misctypes.lident * bool * inductive * Sorts.family) list -> unit + +(** Main calls to interpret the Scheme command *) + +val do_scheme : (Misctypes.lident option * scheme) list -> unit + +(** Combine a list of schemes into a conjunction of them *) + +val build_combined_scheme : env -> Constant.t list -> Evd.evar_map * constr * types + +val do_combined_scheme : Misctypes.lident -> Misctypes.lident list -> unit + +(** Hook called at each inductive type definition *) + +val declare_default_schemes : MutInd.t -> unit -- cgit v1.2.3