(* Copyright (C) 2004, HELM Team. * * This file is part of HELM, an Hypertextual, Electronic * Library of Mathematics, developed at the Computer Science * Department, University of Bologna, Italy. * * HELM is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * HELM is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HELM; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, * MA 02111-1307, USA. * * For details, see the HELM World-Wide-Web page, * http://helm.cs.unibo.it/ *) open Ast open Printf let pp_binder = function | `Lambda -> "lambda" | `Pi -> "pi" | `Exists -> "exists" | `Forall -> "forall" let rec pp_term = function | LocatedTerm ((p_begin, p_end), term) -> (* sprintf "[%d,%d]%s" p_begin p_end (pp_term term) *) pp_term term | Appl terms -> sprintf "(%s)" (String.concat " " (List.map pp_term terms)) | Appl_symbol (symbol, _, terms) -> sprintf "(%s %s)" symbol (String.concat " " (List.map pp_term terms)) | Binder (kind, var, typ, body) -> sprintf "\\%s %s%s.%s" (pp_binder kind) (match var with Cic.Anonymous -> "_" | Cic.Name s -> s) (match typ with None -> "" | Some typ -> ": " ^ pp_term typ) (pp_term body) | Case (term, indtype, typ, patterns) -> sprintf "%smatch %s with %s" (match typ with None -> "" | Some t -> sprintf "<%s>" (pp_term t)) (pp_term term) (pp_patterns patterns) | LetIn (name, t1, t2) -> sprintf "let %s = %s in %s" name (pp_term t1) (pp_term t2) | LetRec (kind, definitions, term) -> sprintf "let %s %s in %s" (match kind with `Inductive -> "rec" | `CoInductive -> "corec") (String.concat " and " (List.map (fun (name, body, typ, index) -> sprintf "%s%s = %s" name (match typ with None -> "" | Some typ -> ": " ^ pp_term typ) (pp_term body)) definitions)) (pp_term term) | Ident (name, []) -> name | Ident (name, substs) -> sprintf "%s[%s]" name (pp_substs substs) | Meta (index, substs) -> sprintf "%d[%s]" index (String.concat "; " (List.map (function None -> "_" | Some term -> pp_term term) substs)) | Num (num, _) -> num | Sort `Set -> "Set" | Sort `Prop -> "Prop" | Sort `Type -> "Type" | Sort `CProp -> "CProp" and pp_subst (name, term) = sprintf "%s := %s" name (pp_term term) and pp_substs substs = String.concat "; " (List.map pp_subst substs) and pp_pattern (names, term) = sprintf "%s -> %s" (match names with | [n] -> n | names -> "(" ^ String.concat " " names ^ ")") (pp_term term) and pp_patterns patterns = sprintf "[%s]" (String.concat " | " (List.map pp_pattern patterns))