-
Notifications
You must be signed in to change notification settings - Fork 381
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] - chore: remove two mathport syntax stubs #14693
Conversation
That tactic exists now, and (in the words of its Lean 4 author) can be improved further, but it is certainly not a stub any more. rw_search? seems to be not implemented yet
This now exists as #register_hint. Does this need a change in mathport first? Or am I overlooking something?
PR summary 5635f8abc6Import changes for modified filesNo significant changes to the import graph Import changes for all files
Declarations diffNo 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> |
Mathlib/Mathport/Syntax.lean
Outdated
@@ -225,7 +225,6 @@ syntax generalizingClause := " generalizing" (ppSpace ident)+ | |||
/- E -/ syntax (name := nthRwLHS) "nth_rw_lhs " num rwRuleSeq (location)? : tactic | |||
/- E -/ syntax (name := nthRwRHS) "nth_rw_rhs " num rwRuleSeq (location)? : tactic | |||
|
|||
/- S -/ syntax (name := rwSearch) "rw_search" (config)? rwRuleSeq : tactic | |||
/- S -/ syntax (name := rwSearch?) "rw_search?" (config)? rwRuleSeq : tactic |
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.
I think this one can also be dropped, since rw?
has been implemented.
cc @semorrison
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.
Pushed a commit dropping this.
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.
Thanks 🎉
bors merge
The `hint` and `rw_search` tactics have been implemented by now.
Build failed (retrying...): |
The `hint` and `rw_search` tactics have been implemented by now.
Pull request successfully merged into master. Build succeeded: |
The
hint
andrw_search
tactics have been implemented by now.