]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/cic/unshare.ml
fixed modules order
[helm.git] / helm / software / components / cic / unshare.ml
1 (* Copyright (C) 2000, 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 (* $Id$ *)
27
28 let unshare ?(fresh_univs=false) t =
29  let module C = Cic in
30  let rec unshare =
31   function
32      C.Rel m -> C.Rel m
33    | C.Var (uri,exp_named_subst) ->
34       let exp_named_subst' = 
35        List.map (function (uri,t) -> (uri,unshare t)) exp_named_subst
36       in
37        C.Var (uri,exp_named_subst')
38    | C.Meta (i,l) ->
39       let l' =
40        List.map
41         (function
42             None -> None
43           | Some t -> Some (unshare t)
44         ) l
45       in
46        C.Meta(i,l')
47    | C.Sort s when not fresh_univs -> C.Sort s
48    | C.Sort (C.Type _) -> C.Sort (C.Type (CicUniv.fresh ()))
49    | C.Sort s -> C.Sort s
50    | C.Implicit info -> C.Implicit info
51    | C.Cast (te,ty) -> C.Cast (unshare te, unshare ty)
52    | C.Prod (n,s,t) -> C.Prod (n, unshare s, unshare t)
53    | C.Lambda (n,s,t) -> C.Lambda (n, unshare s, unshare t)
54    | C.LetIn (n,s,ty,t) ->
55       C.LetIn (n, unshare s, unshare ty, unshare t)
56    | C.Appl l -> C.Appl (List.map unshare l)
57    | C.Const (uri,exp_named_subst) ->
58       let exp_named_subst' = 
59        List.map (function (uri,t) -> (uri,unshare t)) exp_named_subst
60       in
61        C.Const (uri,exp_named_subst')
62    | C.MutInd (uri,tyno,exp_named_subst) ->
63       let exp_named_subst' = 
64        List.map (function (uri,t) -> (uri,unshare t)) exp_named_subst
65       in
66        C.MutInd (uri,tyno,exp_named_subst')
67    | C.MutConstruct (uri,tyno,consno,exp_named_subst) ->
68       let exp_named_subst' = 
69        List.map (function (uri,t) -> (uri,unshare t)) exp_named_subst
70       in
71        C.MutConstruct (uri,tyno,consno,exp_named_subst')
72    | C.MutCase (sp,i,outty,t,pl) ->
73       C.MutCase (sp, i, unshare outty, unshare t,
74        List.map unshare pl)
75    | C.Fix (i, fl) ->
76       let liftedfl =
77        List.map
78         (fun (name, i, ty, bo) -> (name, i, unshare ty, unshare bo))
79          fl
80       in
81        C.Fix (i, liftedfl)
82    | C.CoFix (i, fl) ->
83       let liftedfl =
84        List.map
85         (fun (name, ty, bo) -> (name, unshare ty, unshare bo))
86          fl
87       in
88        C.CoFix (i, liftedfl)
89  in
90   unshare t
91 ;;