https://github.com/EasyCrypt/easycrypt

sort by:
Revision Author Date Message Commit Date
5489c23 Dependent version of the multi-rnd tactic 29 June 2022, 16:01:28 UTC
34819c4 fix merge 29 June 2022, 14:56:03 UTC
b8a1516 Merge branch 'main' into deploy-quantum 29 June 2022, 14:23:00 UTC
9d00961 Extend `rnd` tactic s.t. it can handle multiple samplings / assignments Syntax is `rnd ... : pos1 pos2` and is only evailable for the pRHL variant. The tactic will first collapse all the instructions after `pos1` / `pos2` (in the left/right programs) before applying the `rnd` tactic. It is also possible to access this collapse phase with the new `rndsem` tactic. The syntax is: `rndsem side? codepos` 29 June 2022, 14:12:18 UTC
f6ca7bf remove "rnd := f" syntax 29 June 2022, 14:12:18 UTC
dafa224 Switched from x <> y being expanded by the parser to ! (x = y), and consequently having several explicit parsing rules (including one involving using it as a constructor in a match, which was buggy) to removing the special parsing treatment and adding it as an abbreviation. fixes #217 28 June 2022, 17:03:43 UTC
cec6716 In loop fusion/fission, add more constraints on the epilog Loops' epilogs must now be deterministic and loop/calls-free. This forbids the following unsoundness: ``` require import AllCore DBool. module E = { var i,j : int proc foo () = { var c; i <- 0; j <- 0; c <- false; while (!c) { i <- i + 1; j <- j + 1; c <$ {0,1}; } return i = j; } proc bar () = { var c; i <- 0; j <- 0; c <- false; while (!c) { i <- i + 1; c <$ {0,1}; } c <- false; while (!c) { j <- j + 1; c <$ {0,1}; } return i = j; } }. equiv bad : E.foo ~ E.bar : true ==> ={res}. proof. proc. fission{1} 4!1 @1,2. by sim. qed. ``` Fix #210 11 June 2022, 06:10:21 UTC
1f8da33 Add an option that allows EasyCrypt to connect to an external Why3 server The option is -why3server and takes the unix domain socket path as argument. 11 June 2022, 06:02:38 UTC
ccf8c79 Merge branch 'main' into deploy-quantum 10 June 2022, 09:42:14 UTC
38c4947 Clear the blocked signals mask on startup. In some circumstances, the inherited mask disturbs Why3 server. 10 June 2022, 09:40:59 UTC
0efc2d9 Fix pretty-printing bug (box not closed) fix #209 08 June 2022, 12:15:51 UTC
d7e3674 more on dfun 07 June 2022, 05:25:22 UTC
9b26d2e more results on dfun 05 June 2022, 15:00:07 UTC
eedb32b Merge branch 'main' into deploy-quantum 04 June 2022, 11:20:53 UTC
7fed186 new command: exit (stops EasyCrypt) 04 June 2022, 11:20:29 UTC
1dc6081 cleaning + generalizing dprodrDl 04 June 2022, 11:01:51 UTC
ec94eae more on dfun 03 June 2022, 20:38:08 UTC
cbbab92 Merge branch 'main' into deploy-quantum 03 June 2022, 12:06:47 UTC
4e97480 [runtest]: use all cores by default 03 June 2022, 12:06:38 UTC
ce4696e [stdlib]: more on dfun 03 June 2022, 12:02:28 UTC
47dbe8b Merge remote-tracking branch 'origin/deploy-quantum-hashbased' into deploy-quantum 03 June 2022, 11:50:08 UTC
0968b99 Merge branch 'main' into deploy-quantum 03 June 2022, 10:42:14 UTC
0ea3d99 rename depext to opam-depext The `depext` package fails to install with recent versions of opam. The fix suggested in the package information is to use the renamed package `opam-depext` instead. 02 June 2022, 11:26:56 UTC
d083fc5 [dune]: (re)-codesign promoted binaries Dune substitution breaks the initial code-signing. The problem has been acknowledge by the dune team and should be fixed on their side at some point. 01 June 2022, 06:32:41 UTC
1fcbf2c getting Word.eca to compile: commented proof* 25 May 2022, 17:05:51 UTC
1cbf7ed Fixing dune theories 25 May 2022, 16:46:06 UTC
352d694 Fixing dune theories 25 May 2022, 16:37:30 UTC
1b6f523 theories/datatypes/Word.eca 25 May 2022, 16:19:14 UTC
dfe6020 Lemma stating equality of word and list distributions 25 May 2022, 10:10:00 UTC
45ca6cd [chore] update theories/dune 25 May 2022, 10:06:07 UTC
c0a80b5 Merging dune theories 25 May 2022, 10:05:38 UTC
9d62149 generalized version of dfun_allE 24 May 2022, 18:07:40 UTC
9989616 changed name of lemma 24 May 2022, 17:54:42 UTC
274a36d added stronger version of dmap1E_can 24 May 2022, 17:52:58 UTC
44c088f merge cherry pick in Distr 24 May 2022, 17:52:47 UTC
eb5164e [stdlib] new lemmas around dscalar & dlet. 24 May 2022, 17:46:55 UTC
019ac2d [stdlib]: add various small lemmas (Logic, FSet, Distr, DInterval, Bigop) - #non-backward-compatible: this commits generalizes `Bigop.reindex` to restrict the cancellation property to the index list. 24 May 2022, 17:46:54 UTC
94a67b4 [stdlib]: new operator for updating a function at one point. Notation is "f.[x <- v]" for the function that is equal to "f" but at value "x" where it returns "v". 24 May 2022, 17:44:34 UTC
6175736 Revert "Stuff needed for hashbased" This reverts commit e02ee33759b678e14170830eedc7d8634095acfd. 24 May 2022, 17:37:33 UTC
e02ee33 Stuff needed for hashbased 24 May 2022, 17:03:09 UTC
e45a54c smt option to dump a smt query to a file 20 May 2022, 14:00:39 UTC
90826b1 default.nix: use why3 1.5.0 19 May 2022, 08:16:49 UTC
b44893a [runtest]: exit with a non-zero exit status in case of failure. 18 May 2022, 05:22:28 UTC
168c6d7 [runtest]: do not display warnings/infos as errors Fix #198 18 May 2022, 05:22:28 UTC
3c1476b Fix pretty-printing of projections. Former printer was using an invalid priority for projections. Fixes #200 17 May 2022, 14:43:37 UTC
24b0ce7 Updating README for current why3 requirements. 17 May 2022, 08:36:55 UTC
762988d mark `transpose` as parse-only We have suffered long enough 16 May 2022, 09:27:43 UTC
b44bcba [stdlib]: more lemmas around dfun. Main result is the equivalence between sampling a function and sampling a function in the same function space, but for one point that is sample a posteriori. 14 May 2022, 21:58:53 UTC
2e5cc0e [stdlib] new lemmas around dscalar & dlet. 14 May 2022, 21:58:53 UTC
b66eb5c [stdlib]: new operator for updating a function at one point. Notation is "f.[x <- v]" for the function that is equal to "f" but at value "x" where it returns "v". 14 May 2022, 21:58:45 UTC
b6f7335 New `runtest` script - more readable output (for tty / no-tty) - more readable report 14 May 2022, 21:49:14 UTC
c629679 Fix pretty-printing of mixfix notations. The notation was not printed when the operators was over-applied. E.g., f.[x <- v] y was printed "_.[_<-_]" f x v y. 14 May 2022, 21:32:09 UTC
164a167 README: remove "make PREFIX=" 13 May 2022, 07:23:39 UTC
a76ddc7 README: configuration Why3 using EasyCrypt 13 May 2022, 07:23:18 UTC
5ff9d70 When configuring Why3, create the configuration file destination directory first 13 May 2022, 07:18:32 UTC
92941b1 [stdlib]: link Finite & FinType. 12 May 2022, 07:12:12 UTC
1e12363 error on potential procedure call in RHS of <- If the RHS of a <- fails to typecheck as an expression but could be a procedure call, mention <@ as an alternative 12 May 2022, 06:49:18 UTC
5d030a1 Enforce separation between <- and <@ more strictly This removes the error message when the RHS is a procedure call. This allows us to accept things that were rejected before, when a procedure and operator share their name. A follow-up may re-enable it. Fix #189 12 May 2022, 06:49:18 UTC
cdc065e [stdlib]: add various small lemmas (Logic, FSet, Distr, DInterval, Bigop) - #non-backward-compatible: this commits generalizes `Bigop.reindex` to restrict the cancellation property to the index list. 12 May 2022, 06:43:29 UTC
de42d06 Change configuration file resolution Do not consider locations that point to non-existing files. The configuration file location is now printing by the `config` command. 10 May 2022, 12:14:09 UTC
f1ce5ae Finite.to_seq: now have a body based on choiceb Co-authored-by: Christian Doczkal <christian.doczkal@mpi-sp.org> 09 May 2022, 11:54:13 UTC
a49a0ac Bump Why3 version from 1.4.x to 1.5.0 fix #184 05 May 2022, 13:58:12 UTC
a1eeaf0 [github-action]: do not start as root This requires a modification of the docker image s.t. the user UID is compatible with the one used by Github Action 05 May 2022, 13:14:49 UTC
aab2ca4 Use local configuration file in priority 27 April 2022, 12:46:45 UTC
dbdca26 Fic computation of source root for local builds 27 April 2022, 12:46:13 UTC
577c882 Fix the license announced in the banner 27 April 2022, 09:48:51 UTC
8f314e4 Makefile 26 April 2022, 08:49:07 UTC
89df8ee move cost axioms in abstract theories (fix #175) 26 April 2022, 08:43:31 UTC
9c03562 Reject `x <- RHS` when `RHS` is a procedure call 22 April 2022, 11:13:38 UTC
7b70089 Improve parser for anonymous proc parameters Anonymous and named parameters can be mixed for abstract procedures. Corner cases are not exercised by test suites and may crop up. Resolves #108. 22 April 2022, 10:53:46 UTC
74a4d02 Fixing list of authors 22 April 2022, 06:59:36 UTC
2c53183 [env]: fully head-norm the type before fetching its top-level decl. This commit involves a lot of code motion. partially address #121 22 April 2022, 06:59:22 UTC
bfd4f84 [reduction]: in cbv, fix handling of stack arguments The API was s.t. it was possibly to detect a non-empty stack as an empty one. Partially address #121 22 April 2022, 06:59:22 UTC
ecb156d error message if cost information are missing in the call tactic 08 April 2022, 19:27:18 UTC
4dec70e Fix typing of modules expressions fix #171 07 April 2022, 09:47:53 UTC
ae4fe92 [reduction]: use symmetric "and" when reducing tuples equality fix #171 05 April 2022, 10:59:53 UTC
d5941d0 pretty printer improvements for module restrs + local memtypes 31 March 2022, 15:38:14 UTC
3491166 Remove superflous renamings fixes #146 31 March 2022, 13:49:22 UTC
98fbc44 [tactic]: [proc*]: fix procedure's arguments substitution Instead of introduce a single variable for the arguments tuple, introduce all the procedure's arguments as single program variables. Fix #166 31 March 2022, 07:49:56 UTC
29061b7 [chore] update theories/dune 30 March 2022, 12:32:24 UTC
0b0aa5d [tactic]: [rewrite]: support for multi-rules `rewrite h` with `h : eq1 /\ eq2 /\ ... /\ eqn` is equivalent to `rewrite ?(h1, h2, ..., hn)` with `hi : eqi` address #155 30 March 2022, 08:50:08 UTC
f876954 License change: CeCILL B/C -> MIT 29 March 2022, 19:39:31 UTC
b229a87 dopt: extend subdistribution to lossless distributions on options 29 March 2022, 14:19:04 UTC
1a754ad [tactic]: in `apply... in...`, check that all variables are instantiated fix #149 29 March 2022, 09:05:09 UTC
7a93224 [build]: [dune]: auto-generation of theories/dune 28 March 2022, 17:07:06 UTC
a9748f7 New logic to upper-bound the worst-case complexity of programs ** Breaking change: - to be consistent with oracle calls restrictions, negative memory restrictions are now set using a minus symbol (e.g. `(M <: T {-H})` instead of `(M <: T {H})`). - use `pragma +old_mem_restr` to retrieve old behaviour on memory restrictions ** Additions: - added a new hoare logic for cost, using predicates of the form `choare [H.f: pre ==> post] time [c]`, meaning: from any initial memory satisfying `pre`, the final memory obtained after the execution of `H.f` satisfies `post`, in time at most `c` - in choare predicates, the cost `c` is a cost-vector, comprising: + a concrete cost of type `xint`, where `xint` is a algebraic data-type with two constructors, `N of int` (for bounded running times) and `Inf` (for potentially unbounded running times). + a list of abstract procedures together with an integer indicated the number of times they can be called (e.g. `ROM.o : 42`). - complexity restrictions can be attached to module types procedures, restricting their instantiations. - added a new predicate, `cost`, to establish the cost of evaluating an expression (while `choare` upper-bound the cost of a statement). - (small) examples showing how to use the cost hoare logic can be found in the sub-directory `examples/cost/` - more advanced examples, using a new UC framework in EasyCrypt, can be found in `examples/UC/composition_cost.ec` `examples/UC/dh_enc_cost.ec` 28 March 2022, 10:45:44 UTC
b13fb54 Add lemmas divzMr and divzMl; strenghten and prove modz_pow2_div. 17 March 2022, 20:33:03 UTC
3646dd8 changed name of lemma 12 March 2022, 10:06:23 UTC
d5df8b2 added stronger version of dmap1E_can 12 March 2022, 10:06:23 UTC
c98b014 Extend standard library (IntDiv) with core results. 03 March 2022, 18:13:54 UTC
e22c918 Added definition and lemmas for 'put' operator in List.ec. 03 March 2022, 12:53:02 UTC
8cfa32b An axiom-free formalization of well-founded relations, induction and recursion. 03 March 2022, 09:50:40 UTC
6199997 Generalize `LorR` theory Generalize the `LorR` theory to make it possible to give some input to `L.main` and `R.main`. Using the theory for procedures without input is still possible by cloning the theory with type `input <- unit`. 03 March 2022, 09:50:19 UTC
b06e700 Stdlib: more results on integer division & exponentiation 02 March 2022, 16:28:09 UTC
c316eff Removed redundant "rec" in function declaration. 01 March 2022, 14:04:58 UTC
77aac4b Revert "Unfold non-transparent operators in `case` & `elim`." This reverts commit 70662a755d2121ca1c809cf2eef68462bd720d72. 24 February 2022, 07:02:59 UTC
559910b Partially fix memory capture in substitutions closes #130 22 February 2022, 09:41:14 UTC
ce4d8ca [dune+opam] fix git hash versioning widget 21 February 2022, 18:24:12 UTC
a81d7e8 Merge branch 'deploy-cost-1.0-preview' into deploy-quantum 21 February 2022, 08:29:19 UTC
28c60b4 Merge branch '1.0' into deploy-cost-1.0-preview 21 February 2022, 08:25:03 UTC
back to top