-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
68 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
Try this: simp_all only | ||
Try this: | ||
simp_all only |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/- | ||
Copyright (c) 2023 Jannis Limperg. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Jannis Limperg | ||
-/ | ||
|
||
import Aesop | ||
|
||
set_option trace.debug true | ||
|
||
example {a y : α} {l : List α} : a ≠ y → a ∉ l → a ∉ y::l := by | ||
aesop? | ||
|
||
example {a y : α} {l : List α} : a ≠ y → a ∉ l → a ∉ y::l := by | ||
intros | ||
have : ¬ a ∈ y :: l := by | ||
aesop? | ||
exact this |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Try this: | ||
intro a_1 a_2 | ||
simp_all only [ne_eq, List.mem_cons, or_self, not_false_eq_true] | ||
Try this: | ||
rename_i a_1 a_2 | ||
simp_all only [ne_eq, List.mem_cons, or_self, not_false_eq_true] |