X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_transformations%2FtacticAstPp.ml;h=ee099e4202a4539e97bfa3baa975c57e9f804051;hb=94c9255e1f3095440f4d49ea1d75443a5a343185;hp=452976e59fde7f99e63abb7b2fd75260b56da2fb;hpb=df0606d3bcbc41272fcde2d013bbe0b1aadf98af;p=helm.git diff --git a/helm/ocaml/cic_transformations/tacticAstPp.ml b/helm/ocaml/cic_transformations/tacticAstPp.ml index 452976e59..ee099e420 100644 --- a/helm/ocaml/cic_transformations/tacticAstPp.ml +++ b/helm/ocaml/cic_transformations/tacticAstPp.ml @@ -119,9 +119,10 @@ let rec pp_tactic = function | Symmetry _ -> "symmetry" | Transitivity (_, term) -> "transitivity " ^ pp_term_ast term | FwdSimpl (_, term) -> sprintf "fwd %s" (pp_term_ast term) - | LApply (_, term_opt, term) -> - sprintf "lapply %s%s" (pp_term_ast term) - (match term_opt with | None -> "" | Some t -> " to " ^ pp_term_ast t) + | LApply (_, term_opt, term, ident) -> + sprintf "lapply %s%s%s" (pp_term_ast term) + (match term_opt with None -> "" | Some t -> " to " ^ pp_term_ast t) + (match ident with None -> "" | Some id -> " " ^ id) let pp_flavour = function | `Definition -> "Definition" @@ -219,6 +220,7 @@ let pp_obj = function let pp_command = function | Qed _ -> "qed" + | Drop _ -> "drop" | Set (_, name, value) -> sprintf "Set \"%s\" \"%s\"" name value | Coercion (_,_) -> "Coercion IMPLEMENT ME!!!!!" | Alias (_,s) -> pp_alias s