aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2016-10-24 17:35:04 +0200
committerGravatar Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2016-10-25 15:56:33 +0200
commit2d687dec5709695942aa6a92197a5e5e2a91b616 (patch)
treeb94b6613d3896a33c37ce17237f7af0b988c6aa4
parent7e38b6627caaab7d19c4fc0ee542a67d9f8970c2 (diff)
Remove v62 from the codebase.
-rw-r--r--tactics/auto.mli8
-rw-r--r--tactics/eauto.ml4
-rw-r--r--tactics/hints.ml3
3 files changed, 5 insertions, 10 deletions
diff --git a/tactics/auto.mli b/tactics/auto.mli
index 5384140c2..04791a526 100644
--- a/tactics/auto.mli
+++ b/tactics/auto.mli
@@ -48,17 +48,15 @@ val new_auto : ?debug:Tacexpr.debug ->
(** auto with default search depth and with the hint database "core" *)
val default_auto : unit Proofview.tactic
-(** auto with all hint databases except the "v62" compatibility database *)
+(** auto with all hint databases *)
val full_auto : ?debug:Tacexpr.debug ->
int -> Tacexpr.delayed_open_constr list -> unit Proofview.tactic
-(** auto with all hint databases except the "v62" compatibility database
- and doing delta *)
+(** auto with all hint databases and doing delta *)
val new_full_auto : ?debug:Tacexpr.debug ->
int -> Tacexpr.delayed_open_constr list -> unit Proofview.tactic
-(** auto with default search depth and with all hint databases
- except the "v62" compatibility database *)
+(** auto with default search depth and with all hint databases *)
val default_full_auto : unit Proofview.tactic
(** The generic form of auto (second arg [None] means all bases) *)
diff --git a/tactics/eauto.ml b/tactics/eauto.ml
index c6d244867..480185337 100644
--- a/tactics/eauto.ml
+++ b/tactics/eauto.ml
@@ -410,9 +410,7 @@ let eauto ?(debug=Off) np lems dbnames =
tclTRY (e_search_auto debug np lems db_list)
let full_eauto ?(debug=Off) n lems gl =
- let dbnames = current_db_names () in
- let dbnames = String.Set.remove "v62" dbnames in
- let db_list = List.map searchtable_map (String.Set.elements dbnames) in
+ let db_list = current_pure_db () in
tclTRY (e_search_auto debug n lems db_list) gl
let gen_eauto ?(debug=Off) np lems = function
diff --git a/tactics/hints.ml b/tactics/hints.ml
index 89ecc6c0b..1ebd32c37 100644
--- a/tactics/hints.ml
+++ b/tactics/hints.ml
@@ -657,8 +657,7 @@ let searchtable_add (name,db) =
let current_db_names () = Hintdbmap.domain !searchtable
let current_db () = Hintdbmap.bindings !searchtable
-let current_pure_db () =
- List.map snd (Hintdbmap.bindings (Hintdbmap.remove "v62" !searchtable))
+let current_pure_db () = List.map snd (current_db ())
let error_no_such_hint_database x =
errorlabstrm "Hints" (str "No such Hint database: " ++ str x ++ str ".")