https://github.com/EasyCrypt/easycrypt
Revision 1ca374dced410267d3792c4766d3289c7224a350 authored by Alley Stoughton on 22 February 2018, 17:20:48 UTC, committed by Pierre-Yves Strub on 26 February 2018, 15:04:53 UTC
All use-only instructions must come first. There are two "universal"
use-only instructions: "" (all known provers), and "!" (no
provers). It is illegal to mix ""/"!" with prover names (no point
in doing so).

As before, if the use-only part is empty, it means the currently known
provers. The include/exclude instructions are processed in order,
acting on the result of the use-only part.

Examples (assuming "Z3" and "Alt-Ergo" are only known provers):

prover [].  (* no-op *)
prover [-"Z3"].  (* removes "Z3" from current provers *)
prover [+"Z3"].  (* adds "Z3" to current provers *)
prover [""].  (* results in "Z3", "Alt-Ergo" *)
prover ["!"].  (* results in no provers *)
prover ["Z3"].  (* results in "Z3" *)
prover ["Z3" "Alt-Ergo"].  (* results in "Z3", "Alt-Ergo" *)
prover ["!" +"Z3"].  (* results in "Z3" *)
prover ["" -"Z3"].  (* results in "Alt-Ergo" *)
1 parent 36f7f5a
Raw File
Tip revision: 1ca374dced410267d3792c4766d3289c7224a350 authored by Alley Stoughton on 22 February 2018, 17:20:48 UTC
Reworking specification of current provers.
Tip revision: 1ca374d
MANIFEST
Makefile
Makefile.system
MANIFEST
README.md
COPYRIGHT

# ocamlbuild configuration
_tags
myocamlbuild.ml
config/tests.config

# EasyCrypt sources
find:src:*.ml
find:src:*.mli
find:src:*.mly
find:src:*.mll

src/ecVersion.ml.in
exclude:src/ecVersion.ml

# EasyCrypt theories
find:theories:*.ec
find:theories:*.eca

# EasyCrypt extraction support library
find:extraction:*.ml
find:extraction:*.mli
find:extraction:*.ec

# system
system/Makefile
system/*.c
system/win32/*.c
system/unix/*.c

# EasyCrypt examples
find:examples:*.ec
find:examples:*.eca

# Build scripts
scripts/install/install-sh
scripts/install/distribution
scripts/testing/runtest
scripts/srctx/keywords
find:scripts/patches/:*
back to top