Revision aa6dc074f77deb2c8215b6281a0a0be9e358d461 authored by Pierre-Yves Strub on 19 October 2021, 10:19:36 UTC, committed by Pierre-Yves Strub on 19 October 2021, 10:19:36 UTC
Syntax is: `rewrite [pattern]rule`

In this form, `pattern` is first searched against the
current goal and rule LHS is then matched against the
instanciated pattern. E.g.

  `rewrite [y+_]addrC`

will instantiate `addrC` to `y` and `z` assuming that
the first match of `y+_` in the current goal is `y+z`.

This syntax is compatible with other variants:

  `rewrite -{2}[y+_]addrC`
1 parent 4afdfe9
Raw File
opam
opam-version: "2.0"
maintainer: "pierre-yves@strub.nu"
homepage: "https://www.easycrypt.info/"
bug-reports: "https://www.easycrypt.info/trac/newticket"
dev-repo: "git+https://github.com/EasyCrypt/easycrypt.git"
authors: "EasyCrypt Development Team <team@easycrypt.info>"
license: "CeCILL-C"
build: [
  [make "OCAMLBUILD_ECJOBS=%{jobs}%"]
]
install: [
  [make "PREFIX=%{prefix}%" "install"]
]
remove: [
  [make "PREFIX=%{prefix}%" "uninstall-purge"]
]
depends: [
  "ocaml"
  "batteries" {>= "2.3"}
  "camlzip"
  "menhir" {>= "20150921"}
  "pcre" {>= "7"}
  "why3" {>= "1.4" & < "1.5"}
  "ocaml-inifiles" {>= "1.2"}
  "zarith"
  "ocamlbuild"
  "ocamlfind"
  "yojson"
]
post-messages: [
"EasyCrypt needs external provers to be installed. From opam, you
can install AltErgo (package: alt-ergo).

The required steps for configuring the provers are listed on:
  https://github.com/EasyCrypt/easycrypt#configuring-why3"
]
synopsis: "EasyCrypt: Computer-Aided Cryptographic Proofs"
url {
  src: "git+https://github.com/EasyCrypt/easycrypt.git"
}
back to top