From: Andres Noetzli Date: Wed, 6 May 2020 18:44:34 +0000 (-0700) Subject: Update run scripts for SMT-COMP 2020 (#4454) X-Git-Tag: cvc5-1.0.0~3321 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=00badd3a63a2fa568373d5c58553944b579d42bb;p=cvc5.git Update run scripts for SMT-COMP 2020 (#4454) This commit adds additional options for the model validation track and makes sure that non-"sat"/"unsat" outputs from the sequential porfolio approaches are written to a file instead of stderr when running on StarExec. --- diff --git a/contrib/competitions/smt-comp/run-script-smtcomp-current b/contrib/competitions/smt-comp/run-script-smtcomp-current index 506eb56b7..bdc94b0bc 100755 --- a/contrib/competitions/smt-comp/run-script-smtcomp-current +++ b/contrib/competitions/smt-comp/run-script-smtcomp-current @@ -3,25 +3,38 @@ cvc4=./cvc4 bench="$1" +# Output other than "sat"/"unsat" is either written to stderr or to "err.log" +# in the directory specified by $2 if it has been set (e.g. when running on +# StarExec). +out_file=/dev/stderr +if [ -n "$2" ]; then + out_file="$2/err.log" +fi + 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 and prints the output of the solver to stderr. +# returns normally and prints the output of the solver to $out_file. function trywith { limit=$1; shift; - result="$(ulimit -S -t "$limit";$cvc4 -L smt2.6 --no-incremental --no-type-checking --no-interactive "$@" $bench)" + result="$({ ulimit -S -t "$limit"; $cvc4 -L smt2.6 --no-incremental --no-type-checking --no-interactive "$@" $bench; } 2>&1)" case "$result" in sat|unsat) echo "$result"; exit 0;; - *) echo "$result" >&2;; + *) echo "$result" &> "$out_file";; esac } # use: finishwith [params..] -# to run cvc4 and let it output whatever it will to stdout. +# to run cvc4. Only "sat" or "unsat" are output. Other outputs are written to +# $out_file. function finishwith { - $cvc4 -L smt2.6 --no-incremental --no-type-checking --no-interactive "$@" $bench + result="$({ $cvc4 -L smt2.6 --no-incremental --no-type-checking --no-interactive "$@" $bench; } 2>&1)" + case "$result" in + sat|unsat) echo "$result"; exit 0;; + *) echo "$result" &> "$out_file";; + esac } # the following is designed for a run time of 20 min. diff --git a/contrib/competitions/smt-comp/run-script-smtcomp-current-model-validation b/contrib/competitions/smt-comp/run-script-smtcomp-current-model-validation index 385a845e7..9982a9e29 100755 --- a/contrib/competitions/smt-comp/run-script-smtcomp-current-model-validation +++ b/contrib/competitions/smt-comp/run-script-smtcomp-current-model-validation @@ -13,6 +13,12 @@ function finishwith { case "$logic" in +QF_LRA) + finishwith --no-restrict-pivots --use-soi --new-prop + ;; +QF_LIA) + finishwith --miplib-trick --miplib-trick-subs=4 --use-approx --lemmas-on-replay-failure --replay-early-close-depth=4 --replay-lemma-reject-cut=128 --replay-reject-cut=512 --use-soi --pb-rewrites --ite-simp --simp-ite-compress + ;; QF_BV) finishwith --bv-div-zero-const --bitblast=eager --bv-sat-solver=cadical --no-bv-abstraction ;; @@ -22,4 +28,3 @@ QF_BV) ;; esac -