summaryrefslogtreecommitdiff
path: root/contrib/run-script-casc25-fof
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-07-05 19:56:42 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2015-07-05 19:56:42 +0200
commitba56661b4a49d4b470c6298d3531324b3bf15005 (patch)
tree6dee0cde13ab4e86a6bde22bf130e1d3f70c2a6f /contrib/run-script-casc25-fof
parent69769dae4886621f82c2905b82db727bf2e8cf3f (diff)
Add options --partial-triggers, --elim-taut-quant, improve robustness of --purify-triggers. Enable --quant-alpha-equiv by default. Fix fairness issue when combining cbqi+E-matching. Avoid unecessary delta lemmas. Update casc scripts.
Diffstat (limited to 'contrib/run-script-casc25-fof')
-rwxr-xr-xcontrib/run-script-casc25-fof4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/run-script-casc25-fof b/contrib/run-script-casc25-fof
index 7717abe47..26c544062 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 --quant-alpha-equiv "$@" $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 "$@" $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,7 +25,7 @@ function trywith {
}
function finishwith {
echo "--- Run $@...";
- $cvc4 --lang=tptp --no-checking --no-interactive --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump --quant-alpha-equiv "$@" $bench
+ $cvc4 --lang=tptp --no-checking --no-interactive --dump-instantiations --inst-format=szs --force-no-limit-cpu-while-dump "$@" $bench
}
# designed for 300 seconds
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback