Skip to content
Snippets Groups Projects
Commit 691a6000 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Better tests for `∈` in conclusion of `multiset_solver` goal.

parent 891f58bf
No related branches found
No related tags found
1 merge request!231Many improvements to `multiset_solver`
...@@ -33,13 +33,17 @@ Section test. ...@@ -33,13 +33,17 @@ Section test.
multiplicity x X < 3 {[ x ]} {[ x ]} {[ x ]} X. multiplicity x X < 3 {[ x ]} {[ x ]} {[ x ]} X.
Proof. multiset_solver. Qed. Proof. multiset_solver. Qed.
Lemma test_elem_of_1 x X : x X {[x]} X. Lemma test_elem_of_1 x X : x X {[x]} X.
Proof. multiset_solver. Qed. Proof. multiset_solver. Qed.
Lemma test_elem_of_2 x y X : x y x X y X {[x]} {[y]} X. Lemma test_elem_of_2 x X : x X {[x]} X.
Proof. multiset_solver. Qed. Proof. multiset_solver. Qed.
Lemma test_elem_of_3 x y X Y : x y x X y Y {[x]} {[y]} X Y. Lemma test_elem_of_3 x y X : x y x X y X {[x]} {[y]} X.
Proof. multiset_solver. Qed. Proof. multiset_solver. Qed.
Lemma test_elem_of_4 x y X Y : x y x X y Y {[x]} (X Y) {[ y ]}. Lemma test_elem_of_4 x y X Y : x y x X y Y {[x]} {[y]} X Y.
Proof. multiset_solver. Qed.
Lemma test_elem_of_5 x y X Y : x y x X y Y {[x]} (X Y) {[ y ]}.
Proof. multiset_solver. Qed.
Lemma test_elem_of_6 x y X : {[x]} {[y]} X x X y X.
Proof. multiset_solver. Qed. Proof. multiset_solver. Qed.
Lemma test_big_1 x1 x2 x3 x4 : Lemma test_big_1 x1 x2 x3 x4 :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment