aboutsummaryrefslogtreecommitdiffhomepage
path: root/checker
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2018-03-09 10:27:49 +0100
committerGravatar Maxime Dénès <mail@maximedenes.fr>2018-03-09 10:27:49 +0100
commitd4a4baddad7a58ba84638215d2c4e2d079f4779c (patch)
treee6a112f4a25f8e58576cff490f43acedfcae8d5c /checker
parentfd852113ea205720a9394c27989acaac408f7643 (diff)
parenta7dc1040e4fbd3e996f411f6c0e46e74cae8c93b (diff)
Merge PR #6747: Relax conversion of constructors according to the pCuIC model
Diffstat (limited to 'checker')
-rw-r--r--checker/reduction.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/checker/reduction.ml b/checker/reduction.ml
index 67d00b21d..97255dd49 100644
--- a/checker/reduction.ml
+++ b/checker/reduction.ml
@@ -201,7 +201,9 @@ let convert_constructors
if not (num_cnstr_args = sv1 && num_cnstr_args = sv2) then
convert_universes univs u1 u2
else
- convert_inductive_instances CONV cumi u1 u2 univs
+ (** By invariant, both constructors have a common supertype,
+ so they are convertible _at that type_. *)
+ ()
(* Convertibility of sorts *)