-
Notifications
You must be signed in to change notification settings - Fork 366
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 by Bors] - refactor: redefine Subrel
in terms of α → Prop
instead of Set α
#20475
Conversation
PR summary 0a0294252cImport changes for modified filesNo significant changes to the import graph Import changes for all files
|
Co-authored-by: Eric Wieser <[email protected]>
Co-authored-by: Eric Wieser <[email protected]>
Co-authored-by: Eric Wieser <[email protected]>
This PR/issue depends on: |
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.
bors d+
✌️ vihdzp can now approve this pull request. To approve and merge a pull request, simply reply with |
As this PR is labelled bors merge |
👎 Rejected by label |
bors r+ |
…#20475) Currently, `Subrel r {x | p x}` interacts poorly with `simp`, as the type signature is rewritten from `↑{x | p x} → ↑{x | p x} → Prop` to `{x // p x} → {x // p x} → Prop`. This can be avoided by writing `Subrel r p` instead.
Pull request successfully merged into master. Build succeeded: |
Subrel
in terms of α → Prop
instead of Set α
Subrel
in terms of α → Prop
instead of Set α
Currently,
Subrel r {x | p x}
interacts poorly withsimp
, as the type signature is rewritten from↑{x | p x} → ↑{x | p x} → Prop
to{x // p x} → {x // p x} → Prop
. This can be avoided by writingSubrel r p
instead.{x // x < y}
→Iio y
#20413