From 1cba100b27e634c8ec6dc8d9e41efeb2641f567c Mon Sep 17 00:00:00 2001 From: Robbert Krebbers <mail@robbertkrebbers.nl> Date: Wed, 10 Mar 2021 17:10:57 +0100 Subject: [PATCH] Fix priorities of `SetUnfold` instances for `multisets`. This ensures they are always picked before those of sets. --- theories/gmultiset.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/theories/gmultiset.v b/theories/gmultiset.v index 3d164a8e..c7184829 100644 --- a/theories/gmultiset.v +++ b/theories/gmultiset.v @@ -204,18 +204,18 @@ Section multiset_unfold. Global Instance set_unfold_multiset_equiv X Y f g : (∀ x, MultisetUnfold x X (f x)) → (∀ x, MultisetUnfold x Y (g x)) → - SetUnfold (X ≡ Y) (∀ x, f x = g x). + SetUnfold (X ≡ Y) (∀ x, f x = g x) | 0. Proof. constructor. apply forall_proper; intros x. by rewrite (multiset_unfold x X (f x)), (multiset_unfold x Y (g x)). Qed. Global Instance set_unfold_multiset_eq X Y f g : (∀ x, MultisetUnfold x X (f x)) → (∀ x, MultisetUnfold x Y (g x)) → - SetUnfold (X = Y) (∀ x, f x = g x). + SetUnfold (X = Y) (∀ x, f x = g x) | 0. Proof. constructor. unfold_leibniz. by apply set_unfold_multiset_equiv. Qed. Global Instance set_unfold_multiset_subseteq X Y f g : (∀ x, MultisetUnfold x X (f x)) → (∀ x, MultisetUnfold x Y (g x)) → - SetUnfold (X ⊆ Y) (∀ x, f x ≤ g x). + SetUnfold (X ⊆ Y) (∀ x, f x ≤ g x) | 0. Proof. constructor. apply forall_proper; intros x. by rewrite (multiset_unfold x X (f x)), (multiset_unfold x Y (g x)). -- GitLab