Skip to content
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

Port coq-plugin-lib to Coq 8.11 #42

Draft
wants to merge 42 commits into
base: master
Choose a base branch
from
Draft

Port coq-plugin-lib to Coq 8.11 #42

wants to merge 42 commits into from

Conversation

InnovativeInventor
Copy link
Collaborator

This PR ports coq-plugin-lib to Coq 8.11. It is a work in progress (documentation was a bit sparse so I had to guess in a few places by looking at the types). I've marked this as a draft PR, but it's ready for critique and feedback. Hopefully it works!

Some other notes: Coq 8.11 (released January 2020) is the earliest version of Coq that my ARM mac supports. This PR will enable folks with M1/M2 macs to use this lib.

Makefile.local Outdated
@@ -0,0 +1 @@
OCAMLWARN=-warn-error +a-3-8-40-32-28
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coq 8.11 now turns all warnings into errors. This line is necessary to turn the errors (which were formerly warnings) back to warnings. I took a whitelist approach just to be safe, so only the following warnings: 3, 8, 40, 32, and 28 are kept as warnings.

@@ -140,6 +140,9 @@ let rec map3 (f : 'a -> 'b -> 'c -> 'd) l1 l2 l3 : 'd list =
match (l1, l2, l3) with
| ([], [], []) ->
[]
| ([], _, _) -> failwith "Mismatched sized lists passed to map3"
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These lines were initially defined to address the warning that the pattern matching is not exhaustive. Since I've manually marked this category of warnings to be kept as warnings, this is a bit redundant. I've left this here to give more useful error messages at runtime. Let me know if I should remove them.

@@ -23,3 +23,4 @@ plugin/Makefile
plugin/.merlin
*.out
_opam
src/plibrary.ml
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I excluded this from git because it appears to be a build artifact that gets generated whenever build.sh is run.


let p = Proof.start ~name:(destVar goal) ~poly:true sigma [(env, EConstr.of_constr goal)] in
let (p', _, _) = Proof.run_tactic env tac p in
let compact_p = Proof.data (Proof.compact p') in
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps Proof.compact is unnecessary? Idk if this is actually needed.

@@ -117,7 +112,7 @@ let try_register_record mod_path (ind, ind') =
*
* TODO sigma handling, not sure how to do it here/if we need it
*)
let transform_module_structure ?(init=const Globnames.Refmap.empty) ?(opaques=Globnames.Refset.empty) ident tr_constr mod_body =
let transform_module_structure env ?(init=const GlobRef.Map.empty) ?(opaques=GlobRef.Set.empty) ident tr_constr mod_body =
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added env as an arg to this func, not sure if this is necessary. TODO: consider removing it.

Copy link
Collaborator

@tlringer tlringer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will add more comments later, this is important though since it is causing a bug in PUMPKIN Pi

let sigma = Evd.restrict_universe_context sigma uvars in
let univs = Evd.check_univ_decl ~poly sigma udecl in
let sigma = Evd.minimize_universes sigma in (* todo: is this necessary/bad? *)
let sigma, ce = DeclareDef.prepare_definition ~allow_evars:false ~opaque ~poly sigma udecl ~types:tyopt ~body in
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should use ~allow_evars:true

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok just pushed the fix -- it seems to work!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants