Minor fixes. Add SMTCOMP 2014 script.
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>
Thu, 15 May 2014 17:51:35 +0000 (12:51 -0500)
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>
Thu, 15 May 2014 17:51:35 +0000 (12:51 -0500)
contrib/run-script-cascj7-fnt
contrib/run-script-cascj7-fof
contrib/run-script-cascj7-tff
contrib/run-script-smtcomp2014 [new file with mode: 0755]
src/smt/smt_engine.cpp

index 073a9f297d9e1ba928bdb1d95ba88cde0ea358c1..5309fc93bdd24cbe29e6c93d6ff919bdba2fe707 100755 (executable)
@@ -6,7 +6,7 @@ bench="$1"
 file=${bench##*/}
 filename=${file%.*}
 
-echo "------- cvc4-fnt $bench at $2..."
+echo "------- cvc4-fnt casc j7 : $bench at $2..."
 
 # use: trywith [params..]
 # to attempt a run.  If an SZS ontology result is printed, then
@@ -24,7 +24,7 @@ function trywith {
   if [ ${PIPESTATUS[1]} -eq 0 ]; then exit 0; fi
 }
 function finishwith {
-  echo "--- Run $@ at $limit...";
+  echo "--- Run $@...";
   $cvc4 --no-checking --no-interactive --dump-models --produce-models "$@" $bench
 }
 
index be656b57a2953d61934ac84c9cd9008ce9f55ced..a863f70b52c5e89916a4852b2e95415f0ae1cc45 100755 (executable)
@@ -6,7 +6,7 @@ bench="$1"
 file=${bench##*/}
 filename=${file%.*}
 
-echo "------- cvc4-fof $bench at $2..."
+echo "------- cvc4-fof casc j7 : $bench at $2..."
 
 # use: trywith [params..]
 # to attempt a run.  If an SZS ontology result is printed, then
@@ -24,7 +24,7 @@ function trywith {
   if [ ${PIPESTATUS[1]} -eq 0 ]; then exit 0; fi
 }
 function finishwith {
-  echo "--- Run $@ at $limit...";
+  echo "--- Run $@...";
   $cvc4 --no-checking --no-interactive --dump-instantiations --inst-format=szs "$@" $bench
 }
 
index 4506e511d9b2707ce12dae61b385b0362f8b0ea1..41aec13359eb0a7f1b422d7c0e945269f0f75399 100755 (executable)
@@ -6,7 +6,7 @@ bench="$1"
 file=${bench##*/}
 filename=${file%.*}
 
-echo "------- cvc4-tff $bench at $2..."
+echo "------- cvc4-tff casc j7 : $bench at $2..."
 
 # use: trywith [params..]
 # to attempt a run.  If an SZS ontology result is printed, then
@@ -24,7 +24,7 @@ function trywith {
   if [ ${PIPESTATUS[1]} -eq 0 ]; then exit 0; fi
 }
 function finishwith {
-  echo "--- Run $@ at $limit...";
+  echo "--- Run $@...";
   $cvc4 --no-checking --no-interactive --dump-instantiations --inst-format=szs "$@" $bench
 }
 
diff --git a/contrib/run-script-smtcomp2014 b/contrib/run-script-smtcomp2014
new file mode 100755 (executable)
index 0000000..b121c69
--- /dev/null
@@ -0,0 +1,82 @@
+#!/bin/bash
+
+cvc4=./cvc4
+bench="$1"
+
+logic=$(expr "$(grep -m1 '^[^;]*set-logic' "$bench")" : ' *(set-logic  *\([A-Z_]*\) *) *$')
+
+# use: trywith [params..]
+# to attempt a run.  Only thing printed on stdout is "sat" or "unsat", in
+# which case this run script terminates immediately.  Otherwise, this
+# function returns normally.
+function trywith {
+  result="$($cvc4 --stats -L smt2 --no-checking --no-interactive "$@" $bench)"
+  case "$result" in
+    sat|unsat) echo "$result"; exit 0;;
+  esac
+}
+
+# use: finishwith [params..]
+# to run cvc4 and let it output whatever it will to stdout.
+function finishwith {
+  $cvc4 --stats -L smt2 --no-checking --no-interactive "$@" $bench
+}
+
+case "$logic" in
+
+QF_LRA)
+  finishwith --no-restrict-pivots --enable-miplib-trick --miplib-trick-subs=2 --fc-penalties --collect-pivot-stats --use-soi --new-prop --dio-decomps --unconstrained-simp --fancy-final
+  ;;
+AUFLIA|AUFLIRA|AUFNIRA|UFLRA|UFNIA)
+  # the following is designed for a run time of 1500s.
+  # initial runs
+  trywith 20 --simplification=none --decision=internal --full-saturate-quant
+  trywith 20 --quant-cf --pre-skolem-quant --full-saturate-quant
+  trywith 20 --finite-model-find --mbqi=none
+  # more runs...
+  trywith 30 --relevant-triggers --full-saturate-quant
+  trywith 30 --quant-cf --qcf-tconstraint --inst-when=last-call --full-saturate-quant
+  trywith 30 --finite-model-find --mbqi=gen-ev --uf-ss-totality
+  trywith 30 --disable-prenex-quant --full-saturate-quant
+  trywith 20 --simplification=none --decision=internal --pre-skolem-quant --full-saturate-quant
+  trywith 20 --quant-cf --quant-cf-mode=conflict --full-saturate-quant
+  trywith 20 --fmf-bound-int --macros-quant
+  # medium runs (2 min per)
+  trywith 120 --decision=justification-stoponly --full-saturate-quant
+  trywith 120 --quant-cf --qcf-tconstraint --full-saturate-quant
+  trywith 120 --finite-model-find --fmf-inst-engine --sort-inference --uf-ss-fair --mbqi=gen-ev
+  # last call runs (5 min per)
+  trywith 300 --full-saturate-quant
+  trywith 300 --finite-model-find --sort-inference --uf-ss-fair 
+  finishwith --quant-cf --full-saturate-quant
+  ;;
+LRA)
+  trywith 20 --enable-cbqi --full-saturate-quant
+  trywith 20 --full-saturate-quant
+  trywith 20 --cbqi-recurse --full-saturate-quant
+  trywith 30 --quant-cf --full-saturate-quant
+  trywith 60 --quant-cf --qcf-tconstraint --full-saturate-quant
+  trywith 120 --cbqi-recurse --disable-prenex-quant --full-saturate-quant
+  finishwith --cbqi-recurse --pre-skolem-quant --full-saturate-quant
+  ;;
+QF_AUFBV)
+  trywith --tlimit-per=600000
+  finishwith --decision=justification-stoponly
+  ;;
+QF_BV)
+  trywith --bv-core --decision=justification --tlimit-per=10000
+  trywith --decision=justification --tlimit-per=60000
+  trywith --decision=internal --bitblast-eager --tlimit-per=600000
+  finishwith --decision=justification --decision-use-weight --decision-weight-internal=usr1
+  ;;
+QF_AX)
+  trywith --tlimit-per=2000
+  finishwith --no-arrays-model-based
+  ;;
+*)
+  # just run the default
+  finishwith
+  ;;
+
+esac
+
index c6b76e8507c68c77294acab32cae5bc11b66de73..8ef1d1543808b49142b45f066f47387c679e4278 100644 (file)
@@ -3803,13 +3803,13 @@ Proof* SmtEngine::getProof() throw(ModalException) {
 void SmtEngine::printInstantiations( std::ostream& out ) {
   SmtScope smts(this);
   if( options::instFormatMode()==INST_FORMAT_MODE_SZS ){
-    out << "% SZS CNF output start CNFRefutation for " << d_filename.c_str() << std::endl;
+    out << "% SZS output start Proof for " << d_filename.c_str() << std::endl;
   }
   if( d_theoryEngine ){
     d_theoryEngine->printInstantiations( out );
   }
   if( options::instFormatMode()==INST_FORMAT_MODE_SZS ){
-    out << "% SZS CNF output end CNFRefutation for " << d_filename.c_str() << std::endl;
+    out << "% SZS output end Proof for " << d_filename.c_str() << std::endl;
   }
 }