]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/ocaml/cic_disambiguation/pp.ml
snapshot, almost working
[helm.git] / helm / ocaml / cic_disambiguation / pp.ml
index c4b04351c5c7a985b45968a74fc44e4277718cb2..081a7ab196fad50a14487869c76c8b1f27ad3527 100644 (file)
@@ -38,7 +38,7 @@ let rec pp_term = function
       pp_term term
 
   | Appl terms -> sprintf "(%s)" (String.concat " " (List.map pp_term terms))
-  | Appl_symbol (symbol, 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)
@@ -68,7 +68,7 @@ let rec pp_term = function
       sprintf "%d[%s]" index
         (String.concat "; "
           (List.map (function None -> "_" | Some term -> pp_term term) substs))
-  | Num num -> num
+  | Num (num, _) -> num
   | Sort `Set -> "Set"
   | Sort `Prop -> "Prop"
   | Sort `Type -> "Type"