diff options
author | Samuel Mimram <samuel.mimram@ens-lyon.org> | 2004-07-28 21:54:47 +0000 |
---|---|---|
committer | Samuel Mimram <samuel.mimram@ens-lyon.org> | 2004-07-28 21:54:47 +0000 |
commit | 6b649aba925b6f7462da07599fe67ebb12a3460e (patch) | |
tree | 43656bcaa51164548f3fa14e5b10de5ef1088574 /toplevel/class.mli |
Imported Upstream version 8.0pl1upstream/8.0pl1
Diffstat (limited to 'toplevel/class.mli')
-rw-r--r-- | toplevel/class.mli | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/toplevel/class.mli b/toplevel/class.mli new file mode 100644 index 00000000..b0350985 --- /dev/null +++ b/toplevel/class.mli @@ -0,0 +1,68 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(************************************************************************) + +(*i $Id: class.mli,v 1.17.6.1 2004/07/16 19:31:47 herbelin Exp $ i*) + +(*i*) +open Names +open Term +open Classops +open Declare +open Libnames +open Decl_kinds +open Nametab +(*i*) + +(* Classes and coercions. *) + +(* [try_add_new_coercion_with_target ref s src tg] declares [ref] as a coercion + from [src] to [tg] *) +val try_add_new_coercion_with_target : global_reference -> strength -> + source:cl_typ -> target:cl_typ -> unit + +(* [try_add_new_coercion ref s] declares [ref], assumed to be of type + [(x1:T1)...(xn:Tn)src->tg], as a coercion from [src] to [tg] *) +val try_add_new_coercion : global_reference -> strength -> unit + +(* [try_add_new_coercion_subclass cst s] expects that [cst] denotes a + transparent constant which unfolds to some class [tg]; it declares + an identity coercion from [cst] to [tg], named something like + ["Id_cst_tg"] *) +val try_add_new_coercion_subclass : cl_typ -> strength -> unit + +(* [try_add_new_coercion_with_source ref s src] declares [ref] as a coercion + from [src] to [tg] where the target is inferred from the type of [ref] *) +val try_add_new_coercion_with_source : global_reference -> strength -> + source:cl_typ -> unit + +(* [try_add_new_identity_coercion id s src tg] enriches the + environment with a new definition of name [id] declared as an + identity coercion from [src] to [tg] *) +val try_add_new_identity_coercion : identifier -> strength -> + source:cl_typ -> target:cl_typ -> unit + +val add_coercion_hook : Tacexpr.declaration_hook + +val add_subclass_hook : Tacexpr.declaration_hook + +(* [try_add_new_class ref] declares [ref] as a new class; usually, + this is done implicitely by [try_add_new_coercion]'s functions *) +val try_add_new_class : global_reference -> strength -> unit + +(*s This is used for the discharge *) +type coercion_entry + +val add_new_coercion : coercion_entry -> unit + +val process_class : + dir_path -> identifier list -> + (cl_typ * cl_info_typ) -> (cl_typ * cl_info_typ) +val process_coercion : + dir_path -> identifier list -> coercion -> coercion_entry + +val class_of_ref : global_reference -> cl_typ |