aboutsummaryrefslogtreecommitdiffstats
path: root/src/versions/standard/structures.mli
diff options
context:
space:
mode:
Diffstat (limited to 'src/versions/standard/structures.mli')
-rw-r--r--src/versions/standard/structures.mli122
1 files changed, 0 insertions, 122 deletions
diff --git a/src/versions/standard/structures.mli b/src/versions/standard/structures.mli
deleted file mode 100644
index 9fa4673..0000000
--- a/src/versions/standard/structures.mli
+++ /dev/null
@@ -1,122 +0,0 @@
-(**************************************************************************)
-(* *)
-(* SMTCoq *)
-(* Copyright (C) 2011 - 2022 *)
-(* *)
-(* See file "AUTHORS" for the list of authors *)
-(* *)
-(* This file is distributed under the terms of the CeCILL-C licence *)
-(* *)
-(**************************************************************************)
-
-
-(* WARNING: currently, we map all the econstr into constr: we suppose
- that the goal does not contain existencial variables *)
-
-(* Constr generation and manipulation *)
-type id = Names.variable
-val mkId : string -> id
-
-type name
-val name_of_id : id -> name
-val mkName : string -> name
-val string_of_name : name -> string
-
-type constr = Constr.t
-type types = constr
-val eq_constr : constr -> constr -> bool
-val hash_constr : constr -> int
-val mkProp : types
-val mkConst : Names.Constant.t -> constr
-val mkVar : id -> constr
-val mkRel : int -> constr
-val isRel : constr -> bool
-val destRel : constr -> int
-val lift : int -> constr -> constr
-val mkApp : constr * constr array -> constr
-val decompose_app : constr -> constr * constr list
-val mkLambda : name * types * constr -> constr
-val mkProd : name * types * types -> types
-val mkLetIn : name * constr * types * constr -> constr
-
-val pr_constr_env : Environ.env -> constr -> Pp.t
-val pr_constr : constr -> Pp.t
-
-val mkUConst : constr -> Safe_typing.private_constants Entries.definition_entry
-val mkTConst : constr -> constr -> types -> Safe_typing.private_constants Entries.definition_entry
-val declare_new_type : id -> types
-val declare_new_variable : id -> types -> constr
-val declare_constant : id -> Safe_typing.private_constants Entries.definition_entry -> Names.Constant.t
-
-type cast_kind
-val vmcast : cast_kind
-val mkCast : constr * cast_kind * constr -> constr
-
-
-(* EConstr *)
-type econstr = EConstr.t
-val econstr_of_constr : constr -> econstr
-
-
-(* Modules *)
-val gen_constant : string list list -> string -> constr lazy_t
-
-
-(* Int63 *)
-val int63_modules : string list list
-val mkInt : int -> constr
-val cint : constr lazy_t
-
-
-(* PArray *)
-val parray_modules : string list list
-val max_array_size : int
-val mkArray : types * constr array -> constr
-
-
-(* Traces *)
-val mkTrace :
- ('a -> constr) ->
- ('a -> 'a) ->
- 'b ->
- constr Lazy.t ->
- constr Lazy.t ->
- constr Lazy.t ->
- constr Lazy.t ->
- int -> constr -> constr -> 'a ref -> constr
-
-
-(* Micromega *)
-module Micromega_plugin_Micromega = Micromega_plugin.Micromega
-module Micromega_plugin_Mutils = Mutils_full
-module Micromega_plugin_Certificate = Micromega_plugin.Certificate
-module Micromega_plugin_Coq_micromega = Coq_micromega_full
-
-val micromega_coq_proofTerm : constr lazy_t
-val micromega_dump_proof_term : Micromega_plugin_Micromega.zArithProof -> constr
-
-
-(* Tactics *)
-type tactic = unit Proofview.tactic
-val tclTHEN : tactic -> tactic -> tactic
-val tclTHENLAST : tactic -> tactic -> tactic
-val assert_before : name -> types -> tactic
-val vm_cast_no_check : constr -> tactic
-val mk_tactic : (Environ.env -> Evd.evar_map -> constr -> tactic) -> tactic
-val set_evars_tac : constr -> tactic
-
-
-(* Other differences between the two versions of Coq *)
-type constr_expr = Constrexpr.constr_expr
-val error : string -> 'a
-val warning : string -> string -> unit
-val extern_constr : constr -> constr_expr
-val destruct_rel_decl : (constr, types) Context.Rel.Declaration.pt -> name * types
-val interp_constr : Environ.env -> Evd.evar_map -> constr_expr -> constr
-val ppconstr_lsimpleconstr : Notation_gram.tolerability
-val constrextern_extern_constr : constr -> constr_expr
-val get_rel_dec_name : (constr, types) Context.Rel.Declaration.pt -> name
-val retyping_get_type_of : Environ.env -> Evd.evar_map -> constr -> constr
-
-val vm_conv : Reduction.conv_pb -> types Reduction.kernel_conversion_function
-val cbv_vm : Environ.env -> constr -> types -> constr