https://github.com/EasyCrypt/easycrypt
Revision a37bb89001dfd1400283146b8595f072c0d47409 authored by Pierre-Yves Strub on 17 September 2018, 08:56:28 UTC, committed by Pierre-Yves Strub on 17 September 2018, 08:56:38 UTC
Expressions of the form (x + c1) + c2 are now simplified to
(x + [c1+c2]) (modulo commutativity of (+).
1 parent c997f51
Raw File
Tip revision: a37bb89001dfd1400283146b8595f072c0d47409 authored by Pierre-Yves Strub on 17 September 2018, 08:56:28 UTC
better simplification of int/real addition
Tip revision: a37bb89
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