aboutsummaryrefslogtreecommitdiff
path: root/pretyping
diff options
context:
space:
mode:
authorherbelin2011-12-17 22:59:36 +0000
committerherbelin2011-12-17 22:59:36 +0000
commit218545f49ea41ff12fd8c8f2c094e333be9d0f7e (patch)
tree3e7d3d3a0cb602a8578d8db7d0248c1d6227ca3b /pretyping
parent503dad5f384f9e03ce9b9f3a956dcc3b2a40e37e (diff)
Added a flag to control the use of typing when instantiating applied
meta in the tactic unification algorithm ("auto" becomes much slower if it takes into account the type of metas). git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14813 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'pretyping')
-rw-r--r--pretyping/unification.ml14
-rw-r--r--pretyping/unification.mli1
2 files changed, 12 insertions, 3 deletions
diff --git a/pretyping/unification.ml b/pretyping/unification.ml
index 82a02d9091..1193359cb8 100644
--- a/pretyping/unification.ml
+++ b/pretyping/unification.ml
@@ -202,6 +202,10 @@ type unify_flags = {
modulo_delta_types : Names.transparent_state;
+ check_applied_meta_types : bool;
+ (* This controls whether meta's applied to arguments have their *)
+ (* type unified with the type of their instance *)
+
resolve_evars : bool;
(* This says if type classes instances resolution must be used to infer *)
(* the remaining evars *)
@@ -241,6 +245,7 @@ let default_unify_flags = {
use_metas_eagerly_in_conv_on_closed_terms = true;
modulo_delta = full_transparent_state;
modulo_delta_types = full_transparent_state;
+ check_applied_meta_types = true;
resolve_evars = false;
use_pattern_unification = true;
use_meta_bound_pattern_unification = true;
@@ -261,6 +266,7 @@ let default_no_delta_unify_flags = {
use_metas_eagerly_in_conv_on_closed_terms = true;
modulo_delta = empty_transparent_state;
modulo_delta_types = full_transparent_state;
+ check_applied_meta_types = false;
resolve_evars = false;
use_pattern_unification = false;
use_meta_bound_pattern_unification = true;
@@ -281,6 +287,7 @@ let elim_flags = {
use_metas_eagerly_in_conv_on_closed_terms = true;
modulo_delta = full_transparent_state;
modulo_delta_types = full_transparent_state;
+ check_applied_meta_types = true;
resolve_evars = false;
use_pattern_unification = true;
use_meta_bound_pattern_unification = true;
@@ -296,6 +303,7 @@ let elim_no_delta_flags = {
use_metas_eagerly_in_conv_on_closed_terms = true;
modulo_delta = empty_transparent_state;
modulo_delta_types = full_transparent_state;
+ check_applied_meta_types = false;
resolve_evars = false;
use_pattern_unification = false;
use_meta_bound_pattern_unification = true;
@@ -371,7 +379,7 @@ let unify_0_with_initial_metas (sigma,ms,es as subst) conv_at_top env cv_pb flag
if k1 = k2 then substn else
let stM,stN = extract_instance_status pb in
let (sigma,metasubst,evarsubst) =
- if wt then
+ if wt && flags.check_applied_meta_types then
let tyM = subst_metas metasubst (Typing.meta_type sigma k1) in
let tyN = subst_metas metasubst (Typing.meta_type sigma k2) in
unirec_rec curenvnb CONV true false substn tyM tyN
@@ -381,7 +389,7 @@ let unify_0_with_initial_metas (sigma,ms,es as subst) conv_at_top env cv_pb flag
else sigma,(k2,cM,stM)::metasubst,evarsubst
| Meta k, _ when not (dependent cM cN) ->
let (sigma,metasubst,evarsubst) =
- if wt then
+ if wt && flags.check_applied_meta_types then
let tyM = subst_metas metasubst (Typing.meta_type sigma k) in
let tyN = subst_metas metasubst (get_type_of curenv sigma cN) in
unirec_rec curenvnb CONV true false substn tyM tyN
@@ -397,7 +405,7 @@ let unify_0_with_initial_metas (sigma,ms,es as subst) conv_at_top env cv_pb flag
else error_cannot_unify_local curenv sigma (m,n,cN)
| _, Meta k when not (dependent cN cM) ->
let (sigma,metasubst,evarsubst) =
- if wt then
+ if wt && flags.check_applied_meta_types then
let tyM = subst_metas metasubst (get_type_of curenv sigma cM) in
let tyN = subst_metas metasubst (Typing.meta_type sigma k) in
unirec_rec curenvnb CONV true false substn tyM tyN
diff --git a/pretyping/unification.mli b/pretyping/unification.mli
index d284511775..e4bca4d332 100644
--- a/pretyping/unification.mli
+++ b/pretyping/unification.mli
@@ -15,6 +15,7 @@ type unify_flags = {
use_metas_eagerly_in_conv_on_closed_terms : bool;
modulo_delta : Names.transparent_state;
modulo_delta_types : Names.transparent_state;
+ check_applied_meta_types : bool;
resolve_evars : bool;
use_pattern_unification : bool;
use_meta_bound_pattern_unification : bool;