From d475d255f3c61380524517cd9b97725dcb0c9c22 Mon Sep 17 00:00:00 2001 From: ajreynol Date: Wed, 1 Jul 2015 18:42:43 +0200 Subject: Add options --qcf-all-conflict, --ite-dtt-split-quant, refactor --ite-lift-quant. Minor bug fixes for internalReps, alpha equivalence. Update casc 25 FOF script. --- contrib/run-script-casc25-fof | 8 ++++---- contrib/run-script-casc25-tfa | 40 ++++++++++++++++++++++++++++++++++++++++ contrib/run-script-casc25-tff | 40 ---------------------------------------- 3 files changed, 44 insertions(+), 44 deletions(-) create mode 100644 contrib/run-script-casc25-tfa delete mode 100644 contrib/run-script-casc25-tff (limited to 'contrib') diff --git a/contrib/run-script-casc25-fof b/contrib/run-script-casc25-fof index b6bea37dd..7717abe47 100755 --- a/contrib/run-script-casc25-fof +++ b/contrib/run-script-casc25-fof @@ -15,7 +15,7 @@ echo "------- cvc4-fof casc 25 : $bench at $2..." function trywith { limit=$1; shift; echo "--- Run $@ at $limit..."; - (ulimit -S -t "$limit";$cvc4 --lang=tptp --no-checking --no-interactive --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump "$@" $bench) 2>/dev/null | + (ulimit -S -t "$limit";$cvc4 --lang=tptp --no-checking --no-interactive --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump --quant-alpha-equiv "$@" $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;; @@ -25,13 +25,13 @@ function trywith { } function finishwith { echo "--- Run $@..."; - $cvc4 --lang=tptp --no-checking --no-interactive --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump "$@" $bench + $cvc4 --lang=tptp --no-checking --no-interactive --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump --quant-alpha-equiv "$@" $bench } # designed for 300 seconds trywith 15 --relevant-triggers --clause-split --full-saturate-quant trywith 15 --clause-split --no-e-matching --full-saturate-quant -trywith 15 --finite-model-find --quant-cf --sort-inference --uf-ss-fair +trywith 15 --finite-model-find --quant-cf --qcf-all-conflict --sort-inference --uf-ss-fair trywith 5 --trigger-sel=max --full-saturate-quant trywith 5 --relevant-triggers --clause-split --multi-trigger-when-single --full-saturate-quant trywith 5 --multi-trigger-when-single --multi-trigger-priority --full-saturate-quant @@ -39,7 +39,7 @@ trywith 5 --pre-skolem-quant --no-pre-skolem-quant-nested --full-saturate-quant trywith 15 --relevant-triggers --decision=internal --full-saturate-quant trywith 15 --clause-split --no-quant-cf --full-saturate-quant trywith 15 --clause-split --trigger-sel=min --full-saturate-quant -trywith 30 --relevant-triggers --prenex-quant=none --full-saturate-quant +trywith 30 --prenex-quant=none --full-saturate-quant trywith 30 --decision=internal --simplification=none --no-inst-no-entail --no-quant-cf --full-saturate-quant trywith 30 --finite-model-find --fmf-inst-engine --sort-inference --uf-ss-fair --mbqi=gen-ev finishwith --term-db-mode=relevant --full-saturate-quant diff --git a/contrib/run-script-casc25-tfa b/contrib/run-script-casc25-tfa new file mode 100644 index 000000000..463b5396e --- /dev/null +++ b/contrib/run-script-casc25-tfa @@ -0,0 +1,40 @@ +#!/bin/bash + +cvc4=./cvc4 +bench="$1" + +file=${bench##*/} +filename=${file%.*} + +echo "------- cvc4-tfa casc 25 : $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-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-checking --no-interactive --force-logic="UFNIRA" --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump "$@" $bench +} + +trywith 10 --cbqi2 --decision=internal --full-saturate-quant +trywith 10 --relevant-triggers --full-saturate-quant +trywith 10 --cbqi --full-saturate-quant +trywith 30 --qcf-tconstraint --full-saturate-quant +trywith 60 --cbqi --cbqi-recurse --full-saturate-quant +trywith 10 --full-saturate-quant +trywith 10 --no-e-matching --full-saturate-quant +trywith 10 --fmf-bound-int +finishwith --cbqi2 --cbqi-recurse --full-saturate-quant +# echo "% SZS status" "GaveUp for $filename" diff --git a/contrib/run-script-casc25-tff b/contrib/run-script-casc25-tff deleted file mode 100644 index 9313b7886..000000000 --- a/contrib/run-script-casc25-tff +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash - -cvc4=./cvc4 -bench="$1" - -file=${bench##*/} -filename=${file%.*} - -echo "------- cvc4-tff casc 25 : $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-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-checking --no-interactive --force-logic="UFNIRA" --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump "$@" $bench -} - -trywith 10 --cbqi2 --decision=internal --full-saturate-quant -trywith 10 --relevant-triggers --full-saturate-quant -trywith 10 --cbqi --full-saturate-quant -trywith 30 --qcf-tconstraint --full-saturate-quant -trywith 60 --cbqi --cbqi-recurse --full-saturate-quant -trywith 10 --full-saturate-quant -trywith 10 --no-e-matching --full-saturate-quant -trywith 10 --fmf-bound-int -finishwith --cbqi2 --cbqi-recurse --full-saturate-quant -# echo "% SZS status" "GaveUp for $filename" -- cgit v1.2.3