aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--proofs/clenv.ml8
1 files changed, 3 insertions, 5 deletions
diff --git a/proofs/clenv.ml b/proofs/clenv.ml
index 29d3a5400..55e0fa5d3 100644
--- a/proofs/clenv.ml
+++ b/proofs/clenv.ml
@@ -727,22 +727,20 @@ let unify_to_subterm clause (op,cl) =
matchrec c)
| _ -> error "Match_subterm"))
in
-(* if isMeta op then error "Match_subterm";*)
try matchrec cl
with ex when catchable_exception ex ->
raise (RefinerError (NoOccurrenceFound op))
-(* Possibly gives K-terms in case the operator does not contain
- a meta : BUG ?? *)
let unify_to_subterm_list allow_K clause oplist t =
List.fold_right
(fun op (clause,l) ->
if isMeta op then
- (clause,op::l)
+ if allow_K then (clause,op::l)
+ else error "Match_subterm"
else if occur_meta op then
let (clause',cl) =
try
- (* This is up to some delta ... *)
+ (* This is up to delta for subterms w/o metas ... *)
unify_to_subterm clause (strip_outer_cast op,t)
with RefinerError (NoOccurrenceFound _) when allow_K -> (clause,op)
in