summaryrefslogtreecommitdiff
path: root/contrib/subtac/subtac_command.mli
blob: 27520867feb2c33f36e3b4164b165475ea381d87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
open Pretyping
open Evd
open Environ
open Term
open Topconstr
open Names
open Libnames
open Pp
open Vernacexpr
open Constrintern

val interp_gen :
  typing_constraint ->
  evar_defs ref ->
  env ->
  ?impls:full_implicits_env ->
  ?allow_patvar:bool ->
  ?ltacvars:ltac_sign ->
  constr_expr -> constr
val interp_constr :
  evar_defs ref ->
  env -> constr_expr -> constr
val interp_type_evars :
  evar_defs ref ->
  env ->
  ?impls:full_implicits_env ->
  constr_expr -> constr
val interp_casted_constr_evars :
  evar_defs ref ->
  env ->
  ?impls:full_implicits_env ->
  constr_expr -> types -> constr
val interp_open_constr :
  evar_defs ref -> env -> constr_expr -> constr
val interp_constr_judgment :
  evar_defs ref ->
  env ->
  constr_expr -> unsafe_judgment
val list_chop_hd : int -> 'a list -> 'a list * 'a * 'a list

val interp_binder :     Evd.evar_defs ref ->
    Environ.env -> Names.name -> Topconstr.constr_expr -> Term.constr


val build_recursive :
  (fixpoint_expr * decl_notation) list -> bool -> unit

val build_corecursive :
  (cofixpoint_expr * decl_notation) list -> bool -> unit