]> matita.cs.unibo.it Git - helm.git/commitdiff
elim -> elim_intros (no simpl)
authorAndrea Asperti <andrea.asperti@unibo.it>
Tue, 24 May 2005 08:31:13 +0000 (08:31 +0000)
committerAndrea Asperti <andrea.asperti@unibo.it>
Tue, 24 May 2005 08:31:13 +0000 (08:31 +0000)
helm/matita/matitaEngine.ml

index 437fed32db9ee9f749c3e7c688cccb15761e3669..c5d36ee48359c9354b4896a3b6311759a8ed3716 100644 (file)
@@ -40,7 +40,8 @@ let tactic_of_ast = function
   | TacticAst.Cut (_, term) -> Tactics.cut term
   | TacticAst.Elim (_, term, _) ->
       (* TODO Zack implement "using" argument *)
-      Tactics.elim_intros_simpl term
+      (* old: Tactics.elim_intros_simpl term *)
+      Tactics.elim_intros term
   | TacticAst.ElimType (_, term) -> Tactics.elim_type term
   | TacticAst.Replace (_, what, with_what) -> Tactics.replace ~what ~with_what
   | TacticAst.Auto (_,num) ->