https://github.com/EasyCrypt/easycrypt
Revision 772133390e3e31ed3bf442d37137f93db00210e2 authored by Alley Stoughton on 05 November 2017, 08:09:52 UTC, committed by Pierre-Yves Strub on 05 November 2017, 08:09:52 UTC
rewrite Pr [...]

for mu_ge0 and mu_le1, corresponding to

lemma ge0_mu (d : 'a distr) p : 0%r <= mu d p.
lemma le1_mu (d : 'a distr) p : mu d p <= 1%r.

from Distr.ec
1 parent 7f64de1
Raw File
Tip revision: 772133390e3e31ed3bf442d37137f93db00210e2 authored by Alley Stoughton on 05 November 2017, 08:09:52 UTC
Implemented (#2)
Tip revision: 7721333
Makefile.system
# -*- Makefile -*-

# --------------------------------------------------------------------
OCAML    := $(shell ocamlbuild -which ocamlc 2>/dev/null || echo false)
CC       := gcc
MACHINE  := $(shell $(OCAML) -ccopt -dumpmachine dummy.c 2>/dev/null)
UNAME    := $(shell uname -s)
EXE      :=

ifneq (,$(findstring CYGWIN,$(UNAME)))
  CC = $(MACHINE)-gcc
endif

ifneq (,$(findstring mingw,$(MACHINE)))
EXE := .exe
endif

ifneq (,$(findstring cygwin,$(MACHINE)))
EXE := .exe
endif
back to top