https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: 328c0281e3c6fa796120d8d1118a98f4569ccbff authored by Pierre Boutry on 18 January 2022, 18:21:42 UTC
proof of the reduction for GDH_RSR
Tip revision: 328c028
dune
(env
 (dev     (flags :standard -rectypes -warn-error -a+31 -w +28+33-9-23-32-58))
 (release (flags :standard -rectypes -warn-error -a+31 -w +28+33-9-23-32-58)
          (ocamlopt_flags -O3 -unbox-closures)))

(include_subdirs unqualified)

(executable
 (public_name easycrypt)
 (name ec)
 (promote (until-clean))
 (libraries batteries dune-build-info dune-site inifiles why3 yojson zarith))

(generate_sites_module
 (module EcRelocate)
 (sites easycrypt)
 (sourceroot))

(ocamllex ecLexer)

(menhir
 (modules ecParser)
 (flags --table))
back to top