summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-06-12 21:11:15 +0000
committerMorgan Deters <mdeters@gmail.com>2012-06-12 21:11:15 +0000
commit9348417ac5f12e8269a52a7c9b5a01a4aa558c74 (patch)
tree0b983b0eed731d24bf102aecb2f5a9892984be8b /Makefile
parentbd346889a03d0b1c6ab56d18d39d966f4782a58c (diff)
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 18 insertions, 1 deletions
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)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback