aboutsummaryrefslogtreecommitdiffhomepage
path: root/parsing/g_tactic.ml4
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-08-07 01:43:37 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-08-07 01:45:24 +0200
commit876f202985d5bd463bd5b44c195b239bcfedad7c (patch)
treee6fe3f6003e21ab642f2ab03d060f77503c1fd7a /parsing/g_tactic.ml4
parent27a7d7133f83cb95eff90df4338a47b0d6681aa0 (diff)
Removing simple induction / destruct from the AST.
Diffstat (limited to 'parsing/g_tactic.ml4')
-rw-r--r--parsing/g_tactic.ml44
1 files changed, 0 insertions, 4 deletions
diff --git a/parsing/g_tactic.ml4 b/parsing/g_tactic.ml4
index b9eaf53ee..a29c782c5 100644
--- a/parsing/g_tactic.ml4
+++ b/parsing/g_tactic.ml4
@@ -608,16 +608,12 @@ GEXTEND Gram
| IDENT "generalize"; IDENT "dependent"; c = constr -> TacGeneralizeDep c
(* Derived basic tactics *)
- | IDENT "simple"; IDENT"induction"; h = quantified_hypothesis ->
- TacSimpleInductionDestruct (true,h)
| IDENT "induction"; ic = induction_clause_list ->
TacInductionDestruct (true,false,ic)
| IDENT "einduction"; ic = induction_clause_list ->
TacInductionDestruct(true,true,ic)
| IDENT "double"; IDENT "induction"; h1 = quantified_hypothesis;
h2 = quantified_hypothesis -> TacDoubleInduction (h1,h2)
- | IDENT "simple"; IDENT "destruct"; h = quantified_hypothesis ->
- TacSimpleInductionDestruct (false,h)
| IDENT "destruct"; icl = induction_clause_list ->
TacInductionDestruct(false,false,icl)
| IDENT "edestruct"; icl = induction_clause_list ->