Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #200 from AeneasVerif/bump-charon | Guillaume Boisseau | 2024-05-24 | 4 | -6/+7 |
|\ | |||||
| * | Update charon pin | Nadrieril | 2024-05-24 | 4 | -6/+7 |
|/ | |||||
* | Merge pull request #199 from AeneasVerif/son/errors | Son HO | 2024-05-24 | 2 | -17/+29 |
|\ | | | | | Print name patterns when ignoring definitions | ||||
| * | Fix a crash which happens when type definitions are ignored | Son Ho | 2024-05-24 | 1 | -2/+5 |
| | | |||||
| * | Print the name patterns of the definitions which fail to extract | Son Ho | 2024-05-24 | 2 | -15/+24 |
|/ | |||||
* | Merge pull request #198 from AeneasVerif/son/omega | Son HO | 2024-05-24 | 4 | -104/+82 |
|\ | | | | | Update scalar_tac to use omega instead of linarith | ||||
| * | Update scalar_tac to use omega instead of linarith | Son Ho | 2024-05-24 | 4 | -104/+82 |
|/ | |||||
* | Update the interpreter so that it is not written in CPS style (#120) | Escherichia | 2024-05-23 | 19 | -2294/+2116 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Start turning the compiler in a style which is less CPS * Update a function in InterpreterExpressions.ml * WIP work on cps * WIP * WIP, currently on InterpreterStatements.ml * WIP * Finished CPS-related modification * Fixed some warning related to documentation comments * Finished loop support, fixed a loop * fixed a typed value * Fixed check_disappeared related error * cleaned check_disappeared related error * Start cleaning up * Do more cleanup * Make some cleanup and fix an issue * Do more cleanup * Do more cleanup * Do more cleanup * Do more cleanup * Do more cleanup * Do more cleanup * Do more cleanup * Do more cleanup * Rename a function * Do more cleanup * Cleanup the loops code and fix some bugs * Cleanup assign_to_place * Make a minor cleanup --------- Co-authored-by: Son Ho <hosonmarc@gmail.com> | ||||
* | Merge pull request #192 from AeneasVerif/bump-charon | Guillaume Boisseau | 2024-05-23 | 17 | -25/+25 |
|\ | |||||
| * | Bump charon version | Nadrieril | 2024-05-23 | 17 | -25/+25 |
|/ | |||||
* | Merge pull request #189 from AeneasVerif/son/progress | Son HO | 2024-05-21 | 1 | -0/+13 |
|\ | | | | | Fix an issue in the progress tactic | ||||
| * | Fix an issue in the progress tactic | Son Ho | 2024-05-21 | 1 | -0/+13 |
|/ | |||||
* | Merge pull request #183 from RaitoBezarius/coercions | Son HO | 2024-05-21 | 1 | -0/+12 |
|\ | | | | | feat(backends/lean): make `max`-related coercions nicer | ||||
| * | Merge branch 'main' into coercions | Son HO | 2024-05-21 | 2 | -3/+3 |
| |\ | |/ |/| | |||||
* | | Merge pull request #187 from AeneasVerif/son/readme | Son HO | 2024-05-17 | 1 | -2/+2 |
|\ \ | | | | | | | Update the README | ||||
| * | | Update the README | Son Ho | 2024-05-17 | 1 | -2/+2 |
|/ / | |||||
* | | Merge pull request #186 from AeneasVerif/fix-make | Guillaume Boisseau | 2024-05-15 | 1 | -1/+1 |
|\ \ | |||||
| * | | Makefile: `make check-charon` should not try to recreate the commit pin` | Nadrieril | 2024-05-15 | 1 | -1/+1 |
|/ / | |||||
| * | feat(backends/lean): make `max`-related coercions nicer | Ryan Lahfa | 2024-05-21 | 1 | -0/+12 |
|/ | | | | | | | | | | Situations where you have `coe (max a b) = max (coe a) (coe b)` are often stuck during verification because of the lack of this theorem. With this theorem, `push_cast` works as intended and normalizes even further. Signed-off-by: Ryan Lahfa <ryan.lahfa@inria.fr> | ||||
* | Merge pull request #172 from AeneasVerif/string-literals | Guillaume Boisseau | 2024-05-14 | 4 | -4/+10 |
|\ | |||||
| * | Catch new literal variants | Nadrieril | 2024-05-14 | 4 | -4/+10 |
|/ | |||||
* | Merge pull request #180 from AeneasVerif/ci | Guillaume Boisseau | 2024-05-14 | 1 | -0/+1 |
|\ | | | | | ci: cancel jobs after force-push to a branch | ||||
| * | ci: cancel jobs after force-push to a branch | Nadrieril | 2024-05-14 | 1 | -0/+1 |
|/ | |||||
* | Merge pull request #169 from AeneasVerif/charon-pin | Guillaume Boisseau | 2024-05-14 | 10 | -26/+146 |
|\ | |||||
| * | Tweak wording | Guillaume Boisseau | 2024-05-14 | 1 | -3/+3 |
| | | | | | | | | Co-authored-by: Son HO <hosonmarc@gmail.com> | ||||
| * | Ensure `./charon` points to a valid charon clone | Nadrieril | 2024-05-14 | 6 | -20/+103 |
| | | |||||
| * | `./charon-pin` stores the current charon commit | Nadrieril | 2024-05-14 | 5 | -4/+41 |
|/ | | | | It is kept up-to-date in CI | ||||
* | Merge pull request #164 from RaitoBezarius/ofnat_scalar | Son HO | 2024-05-14 | 1 | -0/+5 |
|\ | | | | | | | feat(backend/lean): Raw Lean literals can be parsed into scalars automatically | ||||
| * | feat(backend/lean): Raw Lean literals can be parsed into scalars automatically | Ryan Lahfa | 2024-04-30 | 1 | -0/+5 |
| | | | | | | | | | | | | | | We can use coercion to go to integers, build a scalar out of an int via unification and let the user clear up bounds or let Lean decide them. Signed-off-by: Ryan Lahfa <ryan.lahfa@inria.fr> | ||||
* | | Merge pull request #177 from RaitoBezarius/oops-soundness-i-am-sowwy | Son HO | 2024-05-14 | 1 | -1/+4 |
|\ \ | | | | | | | backends/lean: repair definitions of `core.mem.replace` | ||||
| * | | backends/lean: repair definition of `core.mem.replace` | Ryan Lahfa | 2024-05-13 | 1 | -1/+4 |
|/ / | | | | | | | | | | | Oops, it is supposed to do something with the second argument! Signed-off-by: Ryan Lahfa <ryan.lahfa@inria.fr> | ||||
* | | Merge pull request #174 from AeneasVerif/bump-charon | Guillaume Boisseau | 2024-05-06 | 3 | -6/+15 |
|\ \ | | | | | | | | | | Update charon | ||||
| * | | Update charon | Nadrieril | 2024-05-06 | 3 | -6/+15 |
|/ / | |||||
* | | Merge pull request #166 from AeneasVerif/afromher/traits | Guillaume Boisseau | 2024-05-06 | 2 | -4/+7 |
|\ \ | | | | | | | | | | Propagate handling of (unsupported) mutually recursive trait declarations | ||||
| * \ | Merge branch 'main' into afromher/traits | Aymeric Fromherz | 2024-05-06 | 4 | -76/+26 |
| |\ \ | |/ / |/| | | |||||
* | | | Merge pull request #173 from AeneasVerif/afromher/doc | Guillaume Boisseau | 2024-05-06 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | | | | | Add menhir and ocamlformat to list of required opam packages | ||||
| * | | | Add menhir and ocamlformat to list of required opam packages | Aymeric Fromherz | 2024-05-06 | 1 | -1/+1 |
|/ / / | |||||
* | | | Merge pull request #170 from AeneasVerif/merge-queue | Guillaume Boisseau | 2024-05-03 | 1 | -0/+6 |
|\ \ \ | |||||
| * | | | Prepare CI for merge queue | Nadrieril | 2024-05-03 | 1 | -0/+6 |
|/ / / | |||||
* | | | Merge pull request #168 from AeneasVerif/bump-charon | Guillaume Boisseau | 2024-05-02 | 1 | -4/+3 |
|\ \ \ | |||||
| * | | | Update charon | Nadrieril | 2024-05-02 | 1 | -4/+3 |
|/ / / | |||||
* | | | Merge pull request #167 from AeneasVerif/bump-charon | Guillaume Boisseau | 2024-05-02 | 3 | -78/+23 |
|\ \ \ | |||||
| * | | | Update charon | Nadrieril | 2024-05-02 | 3 | -78/+23 |
|/ / / | |||||
| * | | Update flake.lock | Aymeric Fromherz | 2024-05-06 | 1 | -3/+3 |
| | | | |||||
| * | | Add error when handling mutually recursive traits | Aymeric Fromherz | 2024-05-01 | 1 | -1/+4 |
|/ / | |||||
* | | Merge pull request #165 from AeneasVerif/bump-charon | Guillaume Boisseau | 2024-04-30 | 7 | -16/+17 |
|\ \ | |/ |/| | |||||
| * | Update charon | Nadrieril | 2024-04-30 | 7 | -16/+17 |
|/ | |||||
* | Merge pull request #159 from zgrannan/add-flake-systems | Guillaume Boisseau | 2024-04-27 | 1 | -1/+1 |
|\ | |||||
| * | Use eachDefaultSystem in flake.nix, update charon in flake.lock | Zack Grannan | 2024-04-26 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #125 from zhassan-aws/core-option-unwrap | Son HO | 2024-04-26 | 36 | -89/+173 |
|\ | | | | | Add `core::option::unwrap` builtin |