aboutsummaryrefslogtreecommitdiff
path: root/plugins/funind/indfun.ml
diff options
context:
space:
mode:
authorArnaud Spiwack2013-11-25 14:25:29 +0100
committerArnaud Spiwack2013-11-25 16:22:41 +0100
commit51d4da4ac126b4b3bb033ec88253866345594e01 (patch)
tree417a1144c28cf691cfa1819b01e7f71ad3ffbb19 /plugins/funind/indfun.ml
parent494ef20fc93dbe7bf373f713284f08b034da9075 (diff)
Remove the Hiddentac module.
Since the new proof engine, Hiddentac has been essentially trivial. Here is what happened to the functions defined there - Aliases, or tactics that were trivial to inline were systematically inlined - Tactics used only in tacinterp have been moved to tacinterp - Other tactics have been moved to a new module Tactics.Simple.
Diffstat (limited to 'plugins/funind/indfun.ml')
-rw-r--r--plugins/funind/indfun.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/funind/indfun.ml b/plugins/funind/indfun.ml
index 4f32feb244..3dc59b7ca7 100644
--- a/plugins/funind/indfun.ml
+++ b/plugins/funind/indfun.ml
@@ -106,7 +106,7 @@ let functional_induction with_clean c princl pat =
in
Tacticals.tclTHEN
(Tacticals.tclMAP (fun id -> Tacticals.tclTRY (Proofview.V82.of_tactic (Equality.subst_gen (do_rewrite_dependent ()) [id]))) idl )
- (Hiddentac.h_reduce flag Locusops.allHypsAndConcl)
+ (Tactics.reduce flag Locusops.allHypsAndConcl)
g
else Tacticals.tclIDTAC g
in