-
Notifications
You must be signed in to change notification settings - Fork 60
EasyCrypt Circuit Based Reasoning Extension #752
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| [submodule "libs/lospecs/tests/simde"] | ||
| path = libs/lospecs/tests/simde | ||
| url = git@github.com:simd-everywhere/simde.git |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,9 @@ | ||
| (dirs 3rdparty src etc theories examples assets scripts) | ||
| (env | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Move the OCaml flags from |
||
| (dev (flags -rectypes -warn-error -a+31 -w +28+33-9-23-32-58-67-69)) | ||
| (release (flags -rectypes -warn-error -a+31 -w +28+33-9-23-32-58-67-69) | ||
| (ocamlopt_flags -O3 -unbox-closures))) | ||
|
|
||
| (dirs 3rdparty src etc libs theories examples assets scripts) | ||
|
|
||
| (install | ||
| (section (site (easycrypt commands))) | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,8 @@ | ||
| # This file is generated by dune, edit dune-project instead | ||
| depends: [ | ||
| "ocaml" {>= "4.08.0"} | ||
| "batteries" {>= "3"} | ||
| "batteries" {>= "3.9"} | ||
| "bitwuzla" | ||
| "camlp-streams" {>= "5"} | ||
| "camlzip" | ||
| "dune" {>= "3.13"} | ||
|
|
@@ -10,6 +11,12 @@ depends: [ | |
| "markdown" | ||
| "pcre2" {>= "8"} | ||
| "why3" {>= "1.8.0" & < "1.9"} | ||
| "ppx_deriving" | ||
| "ppx_deriving_yojson" | ||
| "hex" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we really need these 4 last dependencies?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Both ppx_derivings were for the printing of spec language ASTs, we can add a custom printing method to replace it. Hex was for the parsing of hexadecimal integers in the spec language, so that one seems wise to keep instead of rolling our own |
||
| "iter" | ||
| "cmdliner" | ||
| "progress" | ||
| "yojson" | ||
| "zarith" {>= "1.10"} | ||
| "odoc" {with-doc} | ||
|
|
||
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.
What the point of adding examples that are directly excluded?
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.
No point, that line was changed in a commit that was removing examples dependent on JWord, so ideally we remove both