aboutsummaryrefslogtreecommitdiff
path: root/proofs
diff options
context:
space:
mode:
authorHugo Herbelin2015-01-08 18:18:02 +0100
committerHugo Herbelin2015-01-08 19:05:14 +0100
commitd08532d5344d96d10604760fa44109c9d56e73ce (patch)
tree2f5b472f526a6ad9f72cb57bde4503501f9c7129 /proofs
parentb584c5529f7195849b0dd4f1eebf7c73c46f60db (diff)
Avoiding introducing yet another convention in naming files.
Diffstat (limited to 'proofs')
-rw-r--r--proofs/tacmach.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/proofs/tacmach.ml b/proofs/tacmach.ml
index fe648e7655..4088373ca1 100644
--- a/proofs/tacmach.ml
+++ b/proofs/tacmach.ml
@@ -96,8 +96,8 @@ let pf_reduce_to_atomic_ind = pf_reduce reduce_to_atomic_ind
let pf_hnf_type_of gls = compose (pf_whd_betadeltaiota gls) (pf_get_type_of gls)
-let pf_is_matching = pf_apply ConstrMatching.is_matching_conv
-let pf_matches = pf_apply ConstrMatching.matches_conv
+let pf_is_matching = pf_apply Constr_matching.is_matching_conv
+let pf_matches = pf_apply Constr_matching.matches_conv
(********************************************)
(* Definition of the most primitive tactics *)
@@ -226,7 +226,7 @@ module New = struct
let pf_hnf_type_of gl t =
pf_whd_betadeltaiota gl (pf_get_type_of gl t)
- let pf_matches gl pat t = pf_apply ConstrMatching.matches_conv gl pat t
+ let pf_matches gl pat t = pf_apply Constr_matching.matches_conv gl pat t
let pf_whd_betadeltaiota gl t = pf_apply whd_betadeltaiota gl t
let pf_compute gl t = pf_apply compute gl t