-
Notifications
You must be signed in to change notification settings - Fork 1.1k
chore: import Aesop.Frontend when declaring aesop rule sets
#35165
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
base: master
Are you sure you want to change the base?
chore: import Aesop.Frontend when declaring aesop rule sets
#35165
Conversation
PR summary 7d6b43dc78
|
| File | Base Count | Head Count | Change |
|---|---|---|---|
| Mathlib.Data.Prod.Lex | 165 | 166 | +1 (+0.61%) |
Import changes for all files
| Files | Import difference |
|---|---|
| There are 6745 files with changed transitive imports taking up over 297811 characters: this is too many to display! | |
You can run scripts/import_trans_difference.sh all locally to see the whole output. |
Declarations diff
No declarations were harmed in the making of this PR! 🐙
You can run this locally as follows
## summary with just the declaration names:
./scripts/declarations_diff.sh <optional_commit>
## more verbose report:
./scripts/declarations_diff.sh long <optional_commit>The doc-module for script/declarations_diff.sh contains some details about this script.
No changes to technical debt.
You can run this locally as
./scripts/technical-debt-metrics.sh pr_summary
- The
relativevalue is the weighted sum of the differences with weight given by the inverse of the current value of the statistic. - The
absolutevalue is therelativevalue divided by the total sum of the inverses of the current values (i.e. the weighted average of the differences).
|
Seems reasonable, thanks! |
This PR turns some `import Aesop` into `import Aesop.Frontend` in places where we want to tag `aesop` lemmas, but do not yet want to use the tactic itself.
|
Build failed (retrying...): |
|
bors r- It seems there is some sort of a merge conflict with this PR |
|
Canceled. |
| le_refl := refl_of <| Prod.Lex _ _ | ||
| le_trans _ _ _ := trans_of <| Prod.Lex _ _ | ||
| lt_iff_le_not_ge x₁ x₂ := by aesop (add simp [le_iff, lt_iff, lt_iff_le_not_ge]) | ||
| lt_iff_le_not_ge x₁ x₂ := by grind [le_iff, lt_iff, lt_iff_le_not_ge] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The grind proof is visibly faster
This PR turns some
import Aesopintoimport Aesop.Frontendin places where we want to tagaesoplemmas, but do not yet want to use the tactic itself.