]> matita.cs.unibo.it Git - helm.git/blob - components/acic_procedural/proceduralConversion.ml
procedural : some improvements.
[helm.git] / components / acic_procedural / proceduralConversion.ml
1 (* Copyright (C) 2003-2005, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://cs.unibo.it/helm/.
24  *)
25
26 module C    = Cic
27 module E    = CicEnvironment
28 module Un   = CicUniv
29 module TC   = CicTypeChecker 
30 module D    = Deannotate
31 module UM   = UriManager
32
33 module T    = ProceduralTypes
34
35 (* helpers ******************************************************************)
36
37 let cic = D.deannotate_term
38
39 let get_ind_type uri tyno =
40    match E.get_obj Un.empty_ugraph uri with
41       | C.InductiveDefinition (tys, _, lpsno, _), _ -> lpsno, List.nth tys tyno
42       | _                                           -> assert false
43
44 let get_default_eliminator context uri tyno ty =
45    let _, (name, _, _, _) = get_ind_type uri tyno in
46    let sort, _ = TC.type_of_aux' [] context ty Un.empty_ugraph in
47    let ext = match sort with
48       | C.Sort C.Prop     -> "_ind"
49       | C.Sort C.Set      -> "_rec"
50       | C.Sort C.CProp    -> "_rec"
51       | C.Sort (C.Type _) -> "_rect" 
52       | C.Meta (_,_)      -> assert false
53       | _                 -> assert false
54     in
55     let buri = UM.buri_of_uri uri in
56     let uri = UM.uri_of_string (buri ^ "/" ^ name ^ ext ^ ".con") in
57     C.Const (uri, [])
58
59 (* proof construction *******************************************************)
60
61 let rec need_whd i = function
62    | C.ACast (_, t, _)               -> need_whd i t
63    | C.AProd (_, _, _, t) when i > 0 -> need_whd (pred i) t
64    | _                    when i > 0 -> true
65    | _                               -> false
66
67 let lift k n =
68    let rec lift_xns k (uri, t) = uri, lift_term k t
69    and lift_ms k = function
70       | None   -> None
71       | Some t -> Some (lift_term k t)
72    and lift_fix len k (id, name, i, ty, bo) =
73       id, name, i, lift_term k ty, lift_term (k + len) bo
74    and lift_cofix len k (id, name, ty, bo) =
75       id, name, lift_term k ty, lift_term (k + len) bo
76    and lift_term k = function
77       | C.ASort _ as t -> t
78       | C.AImplicit _ as t -> t
79       | C.ARel (id, rid, m, b) as t -> if m < k then t else C.ARel (id, rid, m + n, b)
80       | C.AConst (id, uri, xnss) -> C.AConst (id, uri, List.map (lift_xns k) xnss)
81       | C.AVar (id, uri, xnss) -> C.AVar (id, uri, List.map (lift_xns k) xnss)
82       | C.AMutInd (id, uri, tyno, xnss) -> C.AMutInd (id, uri, tyno, List.map (lift_xns k) xnss)
83       | C.AMutConstruct (id, uri, tyno, consno, xnss) -> C.AMutConstruct (id, uri,tyno,consno, List.map (lift_xns k) xnss)
84       | C.AMeta (id, i, mss) -> C.AMeta(id, i, List.map (lift_ms k) mss)
85       | C.AAppl (id, ts) -> C.AAppl (id, List.map (lift_term k) ts)
86       | C.ACast (id, te, ty) -> C.ACast (id, lift_term k te, lift_term k ty)
87       | C.AMutCase (id, sp, i, outty, t, pl) -> C.AMutCase (id, sp, i, lift_term k outty, lift_term k t, List.map (lift_term k) pl)
88       | C.AProd (id, n, s, t) -> C.AProd (id, n, lift_term k s, lift_term (succ k) t)
89       | C.ALambda (id, n, s, t) -> C.ALambda (id, n, lift_term k s, lift_term (succ k) t)
90       | C.ALetIn (id, n, s, t) -> C.ALetIn (id, n, lift_term k s, lift_term (succ k) t)
91       | C.AFix (id, i, fl) -> C.AFix (id, i, List.map (lift_fix (List.length fl) k) fl)
92       | C.ACoFix (id, i, fl) -> C.ACoFix (id, i, List.map (lift_cofix (List.length fl) k) fl)
93    in
94    lift_term k
95
96 let fake_annotate c =
97    let get_binder c m =
98       try match List.nth c (pred m) with
99          | Some (C.Name s, _) -> s
100          | _                  -> assert false
101       with
102          | Invalid_argument _ -> assert false 
103    in
104    let mk_decl n v = Some (n, C.Decl v) in
105    let mk_def n v = Some (n, C.Def (v, None)) in
106    let mk_fix (name, _, _, bo) = mk_def (C.Name name) bo in
107    let mk_cofix (name, _, bo) = mk_def (C.Name name) bo in
108    let rec ann_xns c (uri, t) = uri, ann_term c t
109    and ann_ms c = function
110       | None   -> None
111       | Some t -> Some (ann_term c t)
112    and ann_fix newc c (name, i, ty, bo) =
113       "", name, i, ann_term c ty, ann_term (List.rev_append newc c) bo
114    and ann_cofix newc c (name, ty, bo) =
115       "", name, ann_term c ty, ann_term (List.rev_append newc c) bo
116    and ann_term c = function
117       | C.Sort sort -> C.ASort ("", sort)
118       | C.Implicit ann -> C.AImplicit ("", ann)
119       | C.Rel m -> C.ARel ("", "", m, get_binder c m)
120       | C.Const (uri, xnss) -> C.AConst ("", uri, List.map (ann_xns c) xnss)
121       | C.Var (uri, xnss) -> C.AVar ("", uri, List.map (ann_xns c) xnss)
122       | C.MutInd (uri, tyno, xnss) -> C.AMutInd ("", uri, tyno, List.map (ann_xns c) xnss)
123       | C.MutConstruct (uri, tyno, consno, xnss) -> C.AMutConstruct ("", uri,tyno,consno, List.map (ann_xns c) xnss)
124       | C.Meta (i, mss) -> C.AMeta("", i, List.map (ann_ms c) mss)
125       | C.Appl ts -> C.AAppl ("", List.map (ann_term c) ts)
126       | C.Cast (te, ty) -> C.ACast ("", ann_term c te, ann_term c ty)
127       | C.MutCase (sp, i, outty, t, pl) -> C.AMutCase ("", sp, i, ann_term c outty, ann_term c t, List.map (ann_term c) pl)      
128       | C.Prod (n, s, t) -> C.AProd ("", n, ann_term c s, ann_term (mk_decl n s :: c) t)
129       | C.Lambda (n, s, t) -> C.ALambda ("", n, ann_term c s, ann_term (mk_decl n s :: c) t)
130       | C.LetIn (n, s, t) -> C.ALetIn ("", n, ann_term c s, ann_term (mk_def n s :: c) t)
131       | C.Fix (i, fl) -> C.AFix ("", i, List.map (ann_fix (List.rev_map mk_fix fl) c) fl)
132       | C.CoFix (i, fl) -> C.ACoFix ("", i, List.map (ann_cofix (List.rev_map mk_cofix fl) c) fl)
133    in
134    ann_term c
135
136 let rec add_abst n t =
137    if n <= 0 then t else
138    let t = C.ALambda ("", C.Anonymous, C.AImplicit ("", None), lift 0 1 t) in  
139    add_abst (pred n) t
140
141 let mk_ind context id uri tyno outty arg cases =
142    let lpsno, (_, _, arity, constructors) = get_ind_type uri tyno in
143    let inty, _ = TC.type_of_aux' [] context (cic arg) Un.empty_ugraph in
144    let ps = match inty with
145       | C.MutInd _                  -> []
146       | C.Appl (C.MutInd _ :: args) -> List.map (fake_annotate context) args
147       | _                           -> assert false
148    in
149    let lps, rps = T.list_split lpsno ps in      
150    let eliminator = get_default_eliminator context uri tyno inty in
151    let arg_ref = T.mk_arel 0 "" in
152    let body = C.AMutCase (id, uri, tyno, outty, arg_ref, cases) in
153    let predicate = add_abst (succ (List.length rps)) body in   
154    None