X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FgTopLevel%2FproofEngine.ml;h=9292ece0b839d2a0b1952400b06b7f1916e2b9c0;hb=refs%2Ftags%2FPRE_UNIVERSES;hp=ac1119dd529285921eef4611336e7c87557242ef;hpb=5549be611f33cb52e4725e65b7f9603de22de863;p=helm.git diff --git a/helm/gTopLevel/proofEngine.ml b/helm/gTopLevel/proofEngine.ml index ac1119dd5..9292ece0b 100644 --- a/helm/gTopLevel/proofEngine.ml +++ b/helm/gTopLevel/proofEngine.ml @@ -183,9 +183,9 @@ let apply term = apply_tactic (PrimitiveTactics.apply_tac ~term) let intros ?mk_fresh_name_callback () = apply_tactic (PrimitiveTactics.intros_tac ?mk_fresh_name_callback ()) let cut ?mk_fresh_name_callback term = - apply_tactic (PrimitiveTactics.cut_tac ?mk_fresh_name_callback term) + apply_tactic (PrimitiveTactics.cut_tac ?mk_fresh_name_callback ~term) let letin ?mk_fresh_name_callback term = - apply_tactic (PrimitiveTactics.letin_tac ?mk_fresh_name_callback term) + apply_tactic (PrimitiveTactics.letin_tac ?mk_fresh_name_callback ~term) let exact term = apply_tactic (PrimitiveTactics.exact_tac ~term) let elim_intros_simpl term = apply_tactic (PrimitiveTactics.elim_intros_simpl_tac ~term)