aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--proofs/clenv.ml8
-rw-r--r--tactics/tactics.ml2
2 files changed, 2 insertions, 8 deletions
diff --git a/proofs/clenv.ml b/proofs/clenv.ml
index 55e0fa5d37..80fccbf687 100644
--- a/proofs/clenv.ml
+++ b/proofs/clenv.ml
@@ -1092,14 +1092,6 @@ let clenv_pose_dependent_evars clenv =
(***************************)
-let is_dependent clause =
- match
- kind_of_term (clenv_instance_template clause),
- kind_of_term (clenv_instance_template_type clause)
- with
- App(f,l), App(g,l') when isMeta g & array_last l = array_last l' -> true
- | _ -> false
-
let clenv_unique_resolver allow_K clause gl =
clenv_unify allow_K CUMUL
(clenv_instance_template_type clause) (pf_concl gl) clause
diff --git a/tactics/tactics.ml b/tactics/tactics.ml
index eb1829bf6a..8229560b63 100644
--- a/tactics/tactics.ml
+++ b/tactics/tactics.ml
@@ -487,7 +487,9 @@ let apply_without_reduce c gl =
let clause = mk_clenv_type_of wc c in
res_pf kONT clause gl
+(* Dead code
let refinew_scheme kONT clause gl = res_pf kONT clause gl
+*)
(* A useful resolution tactic which, if c:A->B, transforms |- C into
|- B -> C and |- A (which is realized by Cut B;[Idtac|Apply c]