summaryrefslogtreecommitdiff
path: root/theory.ml
diff options
context:
space:
mode:
authorGravatar Enrico Tassi <gareuselesinge@debian.org>2016-12-27 16:06:42 +0000
committerGravatar Enrico Tassi <gareuselesinge@debian.org>2016-12-27 16:06:42 +0000
commitfb74782e08217e4f1069ed99de6f6f30005bfe13 (patch)
tree85eb9285d70a21d8d36369e5bc88b33f6c039589 /theory.ml
parent017a43a2b7bc66434c52dcff5e87bc47efea0b09 (diff)
parent1117d2e4a00debfbfa0157cc3e780916df72c26b (diff)
Merge tag 'upstream/8.6'
Upstream version 8.6
Diffstat (limited to 'theory.ml')
-rw-r--r--theory.ml8
1 files changed, 4 insertions, 4 deletions
diff --git a/theory.ml b/theory.ml
index a5229fa..20cb299 100644
--- a/theory.ml
+++ b/theory.ml
@@ -289,10 +289,10 @@ module Unit = struct
end
let anomaly msg =
- Errors.anomaly ~label:"aac_tactics" (Pp.str msg)
+ CErrors.anomaly ~label:"aac_tactics" (Pp.str msg)
let user_error msg =
- Errors.error ("aac_tactics: " ^ msg)
+ CErrors.error ("aac_tactics: " ^ msg)
module Trans = struct
@@ -877,11 +877,11 @@ module Trans = struct
t , get ( )
(** [raw_constr_of_t] rebuilds a term in the raw representation *)
- let raw_constr_of_t ir rlt (context:rel_context) t =
+ let raw_constr_of_t ir rlt (context:Context.Rel.t) t =
(** cap rebuilds the products in front of the constr *)
let rec cap c = function [] -> c
| t::q ->
- let i = Context.lookup_rel t context in
+ let i = Context.Rel.lookup t context in
cap (mkProd_or_LetIn i c) q
in
let t,indices = raw_constr_of_t_debruijn ir t in