blob: 02257be77c6b1b2d5ba6a4c8f9fa0ee3fa373687 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
(***********************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
(* \VV/ *************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(***********************************************************************)
(*i $Id$ i*)
open Names
open Term
open Miniml
open Nametab
(*s Special identifiers. [prop_name] is to be used for propositions
and will be printed as [_] in concrete (Caml) code. *)
val anonymous : identifier
val prop_name : identifier
(*s [collect_lambda MLlam(id1,...MLlam(idn,t)...)] returns
the list [idn;...;id1] and the term [t]. *)
val collect_lams : ml_ast -> identifier list * ml_ast
(*s [anonym_lams a n] creates [n] anonymous [MLlam] in front of [a] *)
val anonym_lams : ml_ast -> int -> ml_ast
val named_lams : ml_ast -> identifier list -> ml_ast
(*s Utility functions over ML types. [update_args sp vl t] puts [vl]
as arguments behind every inductive types [(sp,_)]. *)
val sp_of_r : global_reference -> section_path
val type_mem_sp : section_path -> ml_type -> bool
val get_tvars : ml_type -> identifier list
val update_args : section_path -> ml_type list -> ml_type -> ml_type
(*s Utility functions over ML terms. [occurs n t] checks whether [Rel
n] occurs (freely) in [t]. [ml_lift] is de Bruijn
lifting. [ml_subst e t] substitutes [e] for [Rel 1] in [t]. *)
val ast_iter : (ml_ast -> unit) -> ml_ast -> unit
val occurs : int -> ml_ast -> bool
val ml_lift : int -> ml_ast -> ml_ast
val ml_subst : ml_ast -> ml_ast -> ml_ast
(*s Some transformations of ML terms. [normalize] simplify
all beta redexes (when the argument does not occur, it is just
thrown away; when it occurs exactly once it is substituted; otherwise
a let in redex is created for clarity) and iota redexes, plus some other
optimizations. *)
val normalize : ml_ast -> ml_ast
(*s Optimization. *)
val add_ml_decls :
extraction_params -> ml_decl list -> ml_decl list
val optimize :
extraction_params -> ml_decl list -> ml_decl list
exception Impossible
val kill_prop_aux : ml_ast -> ml_ast * identifier list * int
|