-
Notifications
You must be signed in to change notification settings - Fork 382
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] - feat(Fintype.Basic): Add two theorems supporting Auction Theory formalizations #14163
Conversation
PR summary 64a9375e03Import changesNo significant changes to the import graph Declarations diff
You can run this locally as follows## summary with just the declaration names:
./scripts/no_lost_declarations.sh short <optional_commit>
## more verbose report:
./scripts/no_lost_declarations.sh <optional_commit> |
It seems you have rebased your PR on the other PR branch so now we have all these other commits which are not needed in this PR. In your branch |
May I know if it is correct to use the command git reset --hard origin/master |
I am so so sorry. Instead of hitting reply, I seem to have hit edit on your comment. I hope the question you have was answered though. I have restored your version of the comment. You can find my response quoted above. |
9659d19
to
7529406
Compare
Could you please delete this file EDIT: You can do this from this webpage by going to the EDIT 2 : If I have to guess the cause of this file, git probably opened your text editor for the commit message after the reset and for reasons beyond me saved the file into the toplevel directory of your local clone of mathlib. This file can be safely discarded. |
Thanks for the suggestion, relevant modification has been done! |
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 am not convinced that univ_nontrivial
belongs in mathlib. I don't think it is mathlib practice to have mp
and mpr
versions of lemmas as separate globally named lemmas. The iff
version suffices. univ_nontrivial_iff
can be used with rw
and univ_nontrivial_iff.mpr
with apply
, depending on which tactic you are using.
The one advantage of |
If so, is there a reason this theorem is not an instance declaration instead? |
I think |
Okay then I take back that comment, but I still don't see why |
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 the above discussion has resolved and this is still waiting for review? Personally, this PR looks good to me.
Thanks for the kind reply, may I know what more can I do now? Or I just need to wait patiently. |
Arguably, bors merge |
…lizations (#14163) This PR adds two missing theorems in `Mathlib.Data.Fintype.Basic`, which is in asisstant of the other PR of mine formalized some basic theorems in `GameTheory.AuctionTheory.Basic` . One may check the previous PR for Auction Theory here: #13248 I would sincerely appreciate a timely review of this PR, as I am eager to complete my first project on Auction Theory before my upcoming birthday. Thank you very much for your consideration and support! Co-authored-by: Wang Haocheng <[email protected]>
Pull request successfully merged into master. Build succeeded: |
This PR adds two missing theorems in
Mathlib.Data.Fintype.Basic
This is used in another PR of mine formalizing some basic theorems in
GameTheory.AuctionTheory.Basic
.One may check the previous PR for Auction Theory here: #13248
I would sincerely appreciate a timely review of this PR, as I am eager to complete my first project on Auction Theory before my upcoming birthday. Thank you very much for your consideration and support!