]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_transformations/cicAstPp.ml
moved here CicAst and pretty printer
[helm.git] / helm / ocaml / cic_transformations / cicAstPp.ml
1 (* Copyright (C) 2004, 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://helm.cs.unibo.it/
24  *)
25
26 open Printf
27
28 let pp_binder = function
29   | `Lambda -> "lambda"
30   | `Pi -> "pi"
31   | `Exists -> "exists"
32   | `Forall -> "forall"
33
34 let pp_name = function Cic.Anonymous -> "_" | Cic.Name s -> s
35
36 let rec pp_term = function
37   | CicAst.AttributedTerm (_, term) -> pp_term term
38
39   | CicAst.Appl terms ->
40       sprintf "(%s)" (String.concat " " (List.map pp_term terms))
41   | CicAst.Binder (kind, var, body) ->
42       sprintf "\\%s %s.%s" (pp_binder kind) (pp_capture_variable var)
43         (pp_term body)
44   | CicAst.Case (term, indtype, typ, patterns) ->
45       sprintf "%smatch %s with %s"
46         (match typ with None -> "" | Some t -> sprintf "<%s>" (pp_term t))
47         (pp_term term) (pp_patterns patterns)
48   | CicAst.LetIn (var, t1, t2) ->
49       sprintf "let %s = %s in %s" (pp_capture_variable var) (pp_term t1)
50         (pp_term t2)
51   | CicAst.LetRec (kind, definitions, term) ->
52       sprintf "let %s %s in %s"
53         (match kind with `Inductive -> "rec" | `CoInductive -> "corec")
54         (String.concat " and "
55           (List.map
56             (fun (var, body, _) ->
57               sprintf "%s = %s" (pp_capture_variable var) (pp_term body))
58             definitions))
59         (pp_term term)
60   | CicAst.Ident (name, []) -> name
61   | CicAst.Ident (name, substs) -> sprintf "%s[%s]" name (pp_substs substs)
62   | CicAst.Implicit -> "?"
63   | CicAst.Meta (index, substs) ->
64       sprintf "%d[%s]" index
65         (String.concat "; "
66           (List.map (function None -> "_" | Some term -> pp_term term) substs))
67   | CicAst.Num (num, _) -> num
68   | CicAst.Sort `Set -> "Set"
69   | CicAst.Sort `Prop -> "Prop"
70   | CicAst.Sort `Type -> "Type"
71   | CicAst.Sort `CProp -> "CProp"
72   | CicAst.Symbol (name, _) -> name
73
74 and pp_subst (name, term) = sprintf "%s := %s" name (pp_term term)
75 and pp_substs substs = String.concat "; " (List.map pp_subst substs)
76
77 and pp_pattern ((head, vars), term) =
78   sprintf "%s -> %s"
79     (match vars with
80     | [] -> head
81     | _ ->
82         sprintf "(%s %s)" head
83           (String.concat " " (List.map pp_capture_variable vars)))
84     (pp_term term)
85
86 and pp_patterns patterns =
87   sprintf "[%s]" (String.concat " | " (List.map pp_pattern patterns))
88
89 and pp_capture_variable = function
90   | name, None -> pp_name name
91   | name, Some typ -> "(" ^ pp_name name ^ ": " ^ pp_term typ ^ ")"
92