https://github.com/EasyCrypt/easycrypt
Revision 85eabe305eaccdd36fad90f7bbfab81a57b4899a authored by Pierre-Yves Strub on 27 June 2018, 03:27:30 UTC, committed by Pierre-Yves Strub on 27 June 2018, 03:27:30 UTC
These tags can be apply to operators whose co-domain
is a distribution. It adds the relevant lossless / uniform / full
axiom (named w.r.t the convention in Distr.ec) and add these
axioms to the relevant lossless/random database.
1 parent e50b7a7
Raw File
Tip revision: 85eabe305eaccdd36fad90f7bbfab81a57b4899a authored by Pierre-Yves Strub on 27 June 2018, 03:27:30 UTC
Add [lossless / uniform / full] tags for operators
Tip revision: 85eabe3
Makefile
# -*- Makefile -*-

# --------------------------------------------------------------------
OCAMLBUILD_BIN   = ocamlbuild -use-ocamlfind
OCAMLBUILD_EXTRA = -classic-display

# In Emacs, use classic display to enable error jumping.
ifeq ($(shell echo $$TERM), dumb)
 OCAMLBUILD_EXTRA += -classic-display
endif
OCAMLBUILD := $(OCAMLBUILD_BIN) $(OCAMLBUILD_EXTRA)

# --------------------------------------------------------------------
.PHONY: all clean

all:
	$(OCAMLBUILD) ppx_lint.native

clean:
	$(OCAMLBUILD) -clean
	rm -f ppx_lint.native* ppx_lint.byte*
back to top