diff options
| author | Maxime Dénès | 2018-10-29 13:13:53 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2018-10-29 13:13:53 +0100 |
| commit | 13034fdd3a0dd5a396a33169375d9c71ac0253f7 (patch) | |
| tree | 530fed078016985ab083d62a38118678af3f79a5 /pretyping/reductionops.ml | |
| parent | 60b7d3662880666a22e0b90f55b49361c453e3f4 (diff) | |
| parent | 0a50cfa8da5437ecd0b628eafcf48b60c7fd7676 (diff) | |
Merge PR #8780: Cleanup comparing projections through their constants.
Diffstat (limited to 'pretyping/reductionops.ml')
| -rw-r--r-- | pretyping/reductionops.ml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pretyping/reductionops.ml b/pretyping/reductionops.ml index 5dbe95a471..367a48cb5e 100644 --- a/pretyping/reductionops.ml +++ b/pretyping/reductionops.ml @@ -398,8 +398,7 @@ struct match x, y with | Cst_const (c1,u1), Cst_const (c2, u2) -> Constant.equal c1 c2 && Univ.Instance.equal u1 u2 - | Cst_proj p1, Cst_proj p2 -> - Constant.equal (Projection.constant p1) (Projection.constant p2) + | Cst_proj p1, Cst_proj p2 -> Projection.repr_equal p1 p2 | _, _ -> false in let rec equal_rec sk1 sk2 = |
