From 0f9ae462a99f04607c6406afb129fa1393f1ce33 Mon Sep 17 00:00:00 2001 From: Andrew Reynolds Date: Fri, 19 Jun 2020 18:22:38 -0500 Subject: [PATCH] Add casc j10 scripts (#4621) Adds scripts submitted to CASC competition. Note that this version of CVC4 submitted to CASC was modified to allow models when --sort-inference is enabled, since model output is required. --- .../competitions/casc/run-script-cascj10-fnt | 35 +++++++++++++ .../competitions/casc/run-script-cascj10-fof | 50 +++++++++++++++++++ .../competitions/casc/run-script-cascj10-tfa | 37 ++++++++++++++ .../casc/run-script-cascj10-tfn-nr | 36 +++++++++++++ .../competitions/casc/run-script-cascj10-thf | 44 ++++++++++++++++ .../casc/run-script-cascj10-thf-sat-nr | 35 +++++++++++++ 6 files changed, 237 insertions(+) create mode 100755 contrib/competitions/casc/run-script-cascj10-fnt create mode 100755 contrib/competitions/casc/run-script-cascj10-fof create mode 100755 contrib/competitions/casc/run-script-cascj10-tfa create mode 100644 contrib/competitions/casc/run-script-cascj10-tfn-nr create mode 100755 contrib/competitions/casc/run-script-cascj10-thf create mode 100644 contrib/competitions/casc/run-script-cascj10-thf-sat-nr diff --git a/contrib/competitions/casc/run-script-cascj10-fnt b/contrib/competitions/casc/run-script-cascj10-fnt new file mode 100755 index 000000000..aacc7c718 --- /dev/null +++ b/contrib/competitions/casc/run-script-cascj10-fnt @@ -0,0 +1,35 @@ +#!/bin/bash + +here=`dirname $0` +cvc4=$here/cvc4 +bench="$1" + +file=${bench##*/} +filename=${file%.*} + +echo "------- cvc4-fnt casc j10 : $bench at $2..." + +# use: trywith [params..] +# to attempt a run. If an SZS ontology result is printed, then +# the run script terminates immediately. Otherwise, this +# function returns normally. +function trywith { + limit=$1; shift; + echo "--- Run $@ at $limit..."; + (ulimit -S -t "$limit";$cvc4 --lang=tptp --no-type-checking --no-interactive --dump-models --produce-models --force-no-limit-cpu-while-dump "$@" $bench) 2>/dev/null | + (read w1 w2 w3 result w4 w5; + case "$result" in + Satisfiable) echo "$w1 $w2 $w3 $result $w4 $w5";cat;exit 0;; + CounterSatisfiable) echo "$w1 $w2 $w3 $result $w4 $w5";cat;exit 0;; + esac; exit 1) + if [ ${PIPESTATUS[1]} -eq 0 ]; then exit 0; fi +} +function finishwith { + echo "--- Run $@..."; + $cvc4 --lang=tptp --no-type-checking --no-interactive --dump-models --produce-models --force-no-limit-cpu-while-dump "$@" $bench +} + +# designed for 300 seconds +trywith 30 --finite-model-find --uf-ss=no-minimal --sort-inference +finishwith --finite-model-find --macros-quant --macros-quant-mode=all --sort-inference +# echo "% SZS status" "GaveUp for $filename" diff --git a/contrib/competitions/casc/run-script-cascj10-fof b/contrib/competitions/casc/run-script-cascj10-fof new file mode 100755 index 000000000..41afdf39b --- /dev/null +++ b/contrib/competitions/casc/run-script-cascj10-fof @@ -0,0 +1,50 @@ +#!/bin/bash + +# script is used for FOF division, also SLD division + +here=`dirname $0` +cvc4=$here/cvc4 +bench="$1" + +file=${bench##*/} +filename=${file%.*} + +echo "------- cvc4-fof casc j10 : $bench at $2..." + +# use: trywith [params..] +# to attempt a run. If an SZS ontology result is printed, then +# the run script terminates immediately. Otherwise, this +# function returns normally. +function trywith { + limit=$1; shift; + echo "--- Run $@ at $limit..."; + (ulimit -S -t "$limit";$cvc4 --lang=tptp --no-type-checking --no-interactive --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump "$@" $bench) 2>/dev/null | + (read w1 w2 w3 result w4 w5; + case "$result" in + Unsatisfiable) echo "$w1 $w2 $w3 $result $w4 $w5";cat;exit 0;; + Theorem) echo "$w1 $w2 $w3 $result $w4 $w5";cat;exit 0;; + esac; exit 1) + if [ ${PIPESTATUS[1]} -eq 0 ]; then exit 0; fi +} +function finishwith { + echo "--- Run $@..."; + $cvc4 --lang=tptp --no-type-checking --no-interactive --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump "$@" $bench +} + +# designed for 300 seconds +trywith 20 --decision=internal --simplification=none --no-inst-no-entail --no-quant-cf --full-saturate-quant +trywith 20 --no-e-matching --full-saturate-quant +trywith 15 --finite-model-find --uf-ss=no-minimal +trywith 5 --multi-trigger-when-single --full-saturate-quant +trywith 5 --trigger-sel=max --full-saturate-quant +trywith 5 --multi-trigger-when-single --multi-trigger-priority --full-saturate-quant +trywith 10 --multi-trigger-cache --full-saturate-quant +trywith 15 --prenex-quant=none --full-saturate-quant +trywith 15 --fs-interleave --decision=internal --full-saturate-quant +trywith 15 --relevant-triggers --full-saturate-quant +trywith 15 --finite-model-find --fmf-inst-engine --sort-inference --uf-ss-fair +trywith 30 --pre-skolem-quant --full-saturate-quant +trywith 30 --qcf-vo-exp --full-saturate-quant +trywith 30 --no-quant-cf --full-saturate-quant +finishwith --macros-quant --macros-quant-mode=all --full-saturate-quant +# echo "% SZS status" "GaveUp for $filename" diff --git a/contrib/competitions/casc/run-script-cascj10-tfa b/contrib/competitions/casc/run-script-cascj10-tfa new file mode 100755 index 000000000..b4db228b0 --- /dev/null +++ b/contrib/competitions/casc/run-script-cascj10-tfa @@ -0,0 +1,37 @@ +#!/bin/bash + +here=`dirname $0` +cvc4=$here/cvc4 +bench="$1" + +file=${bench##*/} +filename=${file%.*} + +echo "------- cvc4-tfa casc j10 : $bench at $2..." + +# use: trywith [params..] +# to attempt a run. If an SZS ontology result is printed, then +# the run script terminates immediately. Otherwise, this +# function returns normally. +function trywith { + limit=$1; shift; + echo "--- Run $@ at $limit..."; + (ulimit -S -t "$limit";$cvc4 --lang=tptp --no-type-checking --no-interactive --force-logic="UFNIRA" --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump "$@" $bench) 2>/dev/null | + (read w1 w2 w3 result w4 w5; + case "$result" in + Unsatisfiable) echo "$w1 $w2 $w3 $result $w4 $w5";cat;exit 0;; + Theorem) echo "$w1 $w2 $w3 $result $w4 $w5";cat;exit 0;; + esac; exit 1) + if [ ${PIPESTATUS[1]} -eq 0 ]; then exit 0; fi +} +function finishwith { + echo "--- Run $@..."; + $cvc4 --lang=tptp --no-type-checking --no-interactive --force-logic="UFNIRA" --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump "$@" $bench +} + +trywith 15 --finite-model-find --decision=internal +trywith 15 --decision=internal --simplification=none --no-inst-no-entail --no-quant-cf --full-saturate-quant +trywith 15 --no-e-matching --full-saturate-quant +trywith 15 --cegqi-all --purify-triggers --full-saturate-quant +finishwith --macros-quant --macros-quant-mode=all --nl-ext-tplanes --full-saturate-quant +# echo "% SZS status" "GaveUp for $filename" diff --git a/contrib/competitions/casc/run-script-cascj10-tfn-nr b/contrib/competitions/casc/run-script-cascj10-tfn-nr new file mode 100644 index 000000000..73e8249e4 --- /dev/null +++ b/contrib/competitions/casc/run-script-cascj10-tfn-nr @@ -0,0 +1,36 @@ +#!/bin/bash + +here=`dirname $0` +cvc4=$here/cvc4 +bench="$1" + +file=${bench##*/} +filename=${file%.*} + +echo "------- cvc4-tfn casc j10 : $bench at $2..." + +# use: trywith [params..] +# to attempt a run. If an SZS ontology result is printed, then +# the run script terminates immediately. Otherwise, this +# function returns normally. +function trywith { + limit=$1; shift; + echo "--- Run $@ at $limit..."; + (ulimit -S -t "$limit";$cvc4 --lang=tptp --no-type-checking --no-interactive --force-logic="UFNIRA" --dump-models --produce-models --force-no-limit-cpu-while-dump "$@" $bench) 2>/dev/null | + (read w1 w2 w3 result w4 w5; + case "$result" in + Satisfiable) echo "$w1 $w2 $w3 $result $w4 $w5";cat;exit 0;; + CounterSatisfiable) echo "$w1 $w2 $w3 $result $w4 $w5";cat;exit 0;; + esac; exit 1) + if [ ${PIPESTATUS[1]} -eq 0 ]; then exit 0; fi +} +function finishwith { + echo "--- Run $@..."; + $cvc4 --lang=tptp --no-type-checking --no-interactive --force-logic="UFNIRA" --dump-models --produce-models --force-no-limit-cpu-while-dump "$@" $bench +} + +# designed for 300 seconds +trywith 30 --finite-model-find --decision=internal --sort-inference --macros-quant --macros-quant-mode=all +trywith 15 --nl-ext-tplanes --full-saturate-quant --macros-quant --macros-quant-mode=all +finishwith --finite-model-find --fmf-inst-engine --sort-inference --macros-quant --macros-quant-mode=all +# echo "% SZS status" "GaveUp for $filename" diff --git a/contrib/competitions/casc/run-script-cascj10-thf b/contrib/competitions/casc/run-script-cascj10-thf new file mode 100755 index 000000000..741c7c411 --- /dev/null +++ b/contrib/competitions/casc/run-script-cascj10-thf @@ -0,0 +1,44 @@ +#!/bin/bash + +# script is used for THF division + +here=`dirname $0` +cvc4=$here/cvc4 +bench="$1" + +file=${bench##*/} +filename=${file%.*} + +echo "------- cvc4-thf casc j10 : $bench at $2..." + +# use: trywith [params..] +# to attempt a run. If an SZS ontology result is printed, then +# the run script terminates immediately. Otherwise, this +# function returns normally. +function trywith { + limit=$1; shift; + echo "--- Run $@ at $limit..."; + (ulimit -S -t "$limit";$cvc4 --lang=tptp --no-type-checking --no-interactive --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump "$@" $bench) 2>/dev/null | + (read w1 w2 w3 result w4 w5; + case "$result" in + Unsatisfiable) echo "$w1 $w2 $w3 $result $w4 $w5";cat;exit 0;; + Theorem) echo "$w1 $w2 $w3 $result $w4 $w5";cat;exit 0;; + esac; exit 1) + if [ ${PIPESTATUS[1]} -eq 0 ]; then exit 0; fi +} +function finishwith { + echo "--- Run $@..."; + $cvc4 --lang=tptp --no-type-checking --no-interactive --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump "$@" $bench +} + +# designed for 300 seconds +trywith 20 --uf-ho --ho-elim --no-ho-elim-store-ax --full-saturate-quant +trywith 20 --uf-ho --ho-elim --full-saturate-quant +trywith 5 --uf-ho --ho-elim --finite-model-find --uf-ss=no-minimal +trywith 5 --uf-ho --no-ho-matching --finite-model-find --uf-ss=no-minimal +trywith 30 --uf-ho --no-ho-matching --full-saturate-quant --fs-interleave --ho-elim-store-ax +trywith 20 --uf-ho --no-ho-matching --full-saturate-quant --macros-quant-mode=all +trywith 30 --uf-ho --ho-elim --full-saturate-quant --fs-interleave +trywith 30 --uf-ho --no-ho-matching --full-saturate-quant --ho-elim-store-ax +finishwith --uf-ho --ho-elim --no-ho-elim-store-ax --full-saturate-quant +# echo "% SZS status" "GaveUp for $filename" diff --git a/contrib/competitions/casc/run-script-cascj10-thf-sat-nr b/contrib/competitions/casc/run-script-cascj10-thf-sat-nr new file mode 100644 index 000000000..31dcfe152 --- /dev/null +++ b/contrib/competitions/casc/run-script-cascj10-thf-sat-nr @@ -0,0 +1,35 @@ +#!/bin/bash + +here=`dirname $0` +cvc4=$here/cvc4 +bench="$1" + +file=${bench##*/} +filename=${file%.*} + +echo "------- cvc4-thf casc j10 for SAT : $bench at $2..." + +# use: trywith [params..] +# to attempt a run. If an SZS ontology result is printed, then +# the run script terminates immediately. Otherwise, this +# function returns normally. +function trywith { + limit=$1; shift; + echo "--- Run $@ at $limit..."; + (ulimit -S -t "$limit";$cvc4 --lang=tptp --no-type-checking --no-interactive --force-logic="UFNIRA" --dump-models --produce-models --force-no-limit-cpu-while-dump "$@" $bench) 2>/dev/null | + (read w1 w2 w3 result w4 w5; + case "$result" in + Satisfiable) echo "$w1 $w2 $w3 $result $w4 $w5";cat;exit 0;; + CounterSatisfiable) echo "$w1 $w2 $w3 $result $w4 $w5";cat;exit 0;; + esac; exit 1) + if [ ${PIPESTATUS[1]} -eq 0 ]; then exit 0; fi +} +function finishwith { + echo "--- Run $@..."; + $cvc4 --lang=tptp --no-type-checking --no-interactive --force-logic="UFNIRA" --dump-models --produce-models --force-no-limit-cpu-while-dump "$@" $bench +} + +# designed for 300 seconds +trywith 2 --uf-ho --finite-model-find --ho-elim +finishwith --uf-ho --finite-model-find +# echo "% SZS status" "GaveUp for $filename" -- 2.30.2