Revision ed61f015dacc7528b8bd38011f8f30f9863ff127 authored by Pierre-Yves Strub on 11 December 2023, 11:05:03 UTC, committed by Pierre-Yves Strub on 30 January 2024, 15:30:11 UTC
This tactic "inlines" tuple assignments, i.e. it transforms

```
(lv1,...,lvn) <- (e1,...,en);
```

in

```
lv1 <- e1;
...
lvn <- en;
```
1 parent 5903e1f
History
File Mode Size
.github
config
examples
scripts
src
tests
theories
.dir-locals.el -rw-r--r-- 285 bytes
.gitignore -rw-r--r-- 118 bytes
AUTHORS -rw-r--r-- 543 bytes
LICENSE -rw-r--r-- 1.2 KB
Makefile -rw-r--r-- 1.3 KB
README.md -rw-r--r-- 7.7 KB
default.nix -rw-r--r-- 626 bytes
dune -rw-r--r-- 221 bytes
dune-project -rw-r--r-- 450 bytes
easycrypt.opam -rw-r--r-- 1.2 KB
easycrypt.opam.template -rw-r--r-- 915 bytes
easycrypt.png -rw-r--r-- 182.6 KB
shell.nix -rw-r--r-- 308 bytes

README.md

back to top