diff options
author | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2014-08-07 01:43:37 +0200 |
---|---|---|
committer | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2014-08-07 01:45:24 +0200 |
commit | 876f202985d5bd463bd5b44c195b239bcfedad7c (patch) | |
tree | e6fe3f6003e21ab642f2ab03d060f77503c1fd7a /grammar | |
parent | 27a7d7133f83cb95eff90df4338a47b0d6681aa0 (diff) |
Removing simple induction / destruct from the AST.
Diffstat (limited to 'grammar')
-rw-r--r-- | grammar/q_coqast.ml4 | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/grammar/q_coqast.ml4 b/grammar/q_coqast.ml4 index 67331727a..6483f66a3 100644 --- a/grammar/q_coqast.ml4 +++ b/grammar/q_coqast.ml4 @@ -357,9 +357,6 @@ let rec mlexpr_of_atomic_tactic = function >> (* Derived basic tactics *) - | Tacexpr.TacSimpleInductionDestruct (isrec,h) -> - <:expr< Tacexpr.TacSimpleInductionDestruct $mlexpr_of_bool isrec$ - $mlexpr_of_quantified_hypothesis h$ >> | Tacexpr.TacInductionDestruct (isrec,ev,l) -> <:expr< Tacexpr.TacInductionDestruct $mlexpr_of_bool isrec$ $mlexpr_of_bool ev$ $mlexpr_of_triple |