-
Notifications
You must be signed in to change notification settings - Fork 30
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
Check commands #44
Comments
Yes indeed There are two issues indeed:
So concerning We could also have a Both That way, both |
I suggest keep it simple. I like to insert |
I am ok with inplace But I still think that we should provide a way for extrernal reviewers to control the claims about axiom free-ness. Of course, it is up to them to do so but we can explain how to do it in case the reviewer is not very knowledgeable in Coq. |
In my work I refer to the actual |
For the record: Print assumption can be tricked: |
Andrej's investigation into performance yielded that we shouldn't use
Print Assumptions
, because it is too slow.Now an open question is whether we want
Check
commands after important theorems or not. Previously we wanted them to outPrint Assumptions
into context, nut now they might be unnecessary as well. Leaving them out might make the compile logs easier to read.An alternative (that I don't find necessarily good) is to have a
summary.v
file which contains lots ofCheck
commands, but is not in the Coq project.I could also look into implementing a
MetaCoq Run Check
command which only prints its results in interactive mode and not in compilation mode.The text was updated successfully, but these errors were encountered: