8000 improved auto goal selection by mrhaandi · Pull Request #43 · fblanqui/color · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

improved auto goal selection #43

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Util/Multiset/MultisetListOrder.v
Original file line number Diff line number Diff line change
Expand Up @@ -436,10 +436,10 @@ Module MultisetListOrder (ES : Eqset_dec).
subst; simpl; simpl in H1.
unfold mult, MultisetLT, transp; simpl.
constructor 1 with (X := {{a'}}) (Y :={{a}}) (Z := (list2multiset l));
auto with multisets.
unfold insert; simpl; auto with multisets.
[auto with multisets|..].
unfold insert; simpl.
rewrite union_comm; auto with multisets.
unfold insert; simpl; auto with multisets.
unfold insert; simpl.
rewrite union_comm; auto with multisets.
intros y Hy; assert (HY : y =A= a).
apply (member_singleton Hy).
Expand Down
2 changes: 1 addition & 1 deletion Util/Multiset/MultisetTheory.v
Original file line number Diff line number Diff line change
Expand Up @@ -1316,7 +1316,7 @@ Module Multiset (MC : MultisetCore).
rewrite (@singleton_mult_in b b); auto with sets.
rewrite (@singleton_mult_notin b a); eauto with sets.
rewrite (@singleton_mult_notin b c); eauto with sets.
rewrite (@singleton_mult_notin b d); eauto with sets.
rewrite (@singleton_mult_notin b d); [|eauto with sets].
lia.
setoid_replace c with d; eauto with sets.
apply meq_multeq; trivial.
Expand Down
0