From 9348417ac5f12e8269a52a7c9b5a01a4aa558c74 Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Tue, 12 Jun 2012 21:11:15 +0000 Subject: Fix to SMT-LIBv1 parser: QF_UF declares sort "U", but other *UF* logics do not (e.g. QF_UFLIA). Also fix a syntax error in a regression test (CVC4 is too lenient to catch it though---CVC3 tripped over it). Also add additional parts for "make submission" in the top-level makefile --- Makefile | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index fad2350c4..8a6d80607 100644 --- a/Makefile +++ b/Makefile @@ -44,13 +44,30 @@ examples: all YEAR := $(shell date +%Y) submission: if [ ! -e configure ]; then ./autogen.sh; fi - ./configure competition --disable-shared --enable-static-binary --with-cln + ./configure competition --disable-shared --enable-static-binary --with-cln --with-portfolio $(MAKE) strip builds/bin/cvc4 $(MAKE) regress1 + strip builds/bin/pcvc4 + $(MAKE) regress1 BINARY=pcvc4 + # main track mkdir -p cvc4-smtcomp-$(YEAR) cp -p builds/bin/cvc4 cvc4-smtcomp-$(YEAR)/cvc4 ( echo '#!/bin/sh'; \ echo 'exec ./cvc4 -L smt2 --no-interactive' ) > cvc4-smtcomp-$(YEAR)/run chmod 755 cvc4-smtcomp-$(YEAR)/run tar cf cvc4-smtcomp-$(YEAR).tar cvc4-smtcomp-$(YEAR) + # parallel track + mkdir -p cvc4-parallel-smtcomp-$(YEAR) + cp -p builds/bin/pcvc4 cvc4-parallel-smtcomp-$(YEAR)/pcvc4 + ( echo '#!/bin/sh'; \ + echo 'exec ./pcvc4 -L smt2 --no-interactive' ) > cvc4-parallel-smtcomp-$(YEAR)/run + chmod 755 cvc4-parallel-smtcomp-$(YEAR)/run + tar cf cvc4-parallel-smtcomp-$(YEAR).tar cvc4-parallel-smtcomp-$(YEAR) + # application track + mkdir -p cvc4-application-smtcomp-$(YEAR) + cp -p builds/bin/cvc4 cvc4-application-smtcomp-$(YEAR)/cvc4 + ( echo '#!/bin/sh'; \ + echo 'exec ./cvc4 -L smt2 --no-interactive --incremental' ) > cvc4-application-smtcomp-$(YEAR)/run + chmod 755 cvc4-application-smtcomp-$(YEAR)/run + tar cf cvc4-application-smtcomp-$(YEAR).tar cvc4-application-smtcomp-$(YEAR) -- cgit v1.2.3