1 (* Copyright (C) 2004-2005, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
26 let rec_ty uri leftno =
27 let rec_ty = Cic.MutInd (uri,0,[]) in
28 if leftno = 0 then rec_ty else
29 Cic.Appl (rec_ty :: (CicUtil.mk_rels leftno 0))
31 let generate_one_proj uri params paramsno fields t i =
32 let mk_lambdas l start =
33 List.fold_right (fun (name,ty) acc ->
34 Cic.Lambda (Cic.Name name,ty,acc)) l start in
35 let recty = rec_ty uri paramsno in
36 let outtype = Cic.Lambda (Cic.Name "w'", CicSubstitution.lift 1 recty, t) in
39 (Cic.Lambda (Cic.Name "w", recty,
40 Cic.MutCase (uri,0,outtype, Cic.Rel 1,
41 [mk_lambdas fields (Cic.Rel i)]))))
43 let projections_of uri field_names =
44 let buri = UriManager.buri_of_uri uri in
45 let obj,ugraph = CicEnvironment.get_cooked_obj CicUniv.empty_ugraph uri in
47 Cic.InductiveDefinition ([_,_,sort,[_,ty]],params,paramsno,_) ->
48 assert (params = []); (* general case not implemented *)
53 | n,Cic.Prod (Cic.Name name,s,t) ->
54 let leftparams,ty = aux (n - 1,t) in
55 (name,s)::leftparams,ty
64 | Cic.Appl _, [] -> []
65 | Cic.Prod (_,s,t), name::tl -> (name,s)::aux (t,tl)
68 aux ((CicSubstitution.lift 1 ty),field_names)
73 | Cic.Appl _, [] -> []
74 | Cic.Prod (_,s,t), name::tl ->
75 (match generate_one_proj uri leftparams paramsno fields s i with
78 UriManager.uri_of_string (buri ^ "/" ^ name ^ ".con")
82 (CicSubstitution.subst
84 (Cic.Const (puri,[]) ::
85 CicUtil.mk_rels paramsno 2 @ [Cic.Rel 1])
87 | None -> assert false)
90 aux (List.length fields) (CicSubstitution.lift 2 ty,field_names)