]> matita.cs.unibo.it Git - helm.git/blobdiff - components/grafite/grafiteAstPp.ml
new compose tactic, still undocumented.
[helm.git] / components / grafite / grafiteAstPp.ml
index 811da9ddce9e7fe6058381969c9149b09f5a1f9e..51b002de9b8d2910734cf0a2d65a73ac30ad896a 100644 (file)
@@ -107,6 +107,9 @@ let rec pp_tactic ~term_pp ~lazy_term_pp =
   | Clear (_,ids) -> Printf.sprintf "clear %s" (pp_hyps ids)
   | ClearBody (_,id) -> Printf.sprintf "clearbody %s" (pp_hyps [id])
   | Constructor (_,n) -> "constructor " ^ string_of_int n
+  | Compose (_,t1, t2, intro_specs) -> 
+      Printf.sprintf "compose %s %s%s" (term_pp t1) (term_pp t1)
+        (pp_intros_specs " as " intro_specs)
   | Contradiction _ -> "contradiction"
   | Cut (_, ident, term) ->
      "cut " ^ term_pp term ^