diff options
| -rw-r--r-- | tactics/tactics.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml index c2d14f8acd..336be31d89 100644 --- a/tactics/tactics.ml +++ b/tactics/tactics.ml @@ -2704,8 +2704,8 @@ let guess_elim isrec hyp0 gl = let elimc = if isrec then lookup_eliminator mind s else - if true (*use_dependent_propositions_elimination () && - dependent_no_evar (mkVar hyp0) (pf_concl gl)*) + if use_dependent_propositions_elimination () && + dependent_no_evar (mkVar hyp0) (pf_concl gl) then pf_apply build_case_analysis_scheme gl mind true s else |
