summaryrefslogtreecommitdiff
path: root/contrib/run-script-cascj7-fof
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-05-14 14:46:53 -0500
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-05-14 14:47:09 -0500
commit478b935ba5e2b9eda4eb21f7651747c5325229b1 (patch)
tree6492b5a4598efadf533859c9d45bafce9295a899 /contrib/run-script-cascj7-fof
parente0a291555fc4710c39a75eac19039a063c166cea (diff)
Finish --dump-instantiations option. Update scripts.
Diffstat (limited to 'contrib/run-script-cascj7-fof')
-rwxr-xr-xcontrib/run-script-cascj7-fof6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/run-script-cascj7-fof b/contrib/run-script-cascj7-fof
index 582a14952..be656b57a 100755
--- a/contrib/run-script-cascj7-fof
+++ b/contrib/run-script-cascj7-fof
@@ -15,7 +15,7 @@ echo "------- cvc4-fof $bench at $2..."
function trywith {
limit=$1; shift;
echo "--- Run $@ at $limit...";
- (ulimit -t "$limit";$cvc4 --no-checking --no-interactive --dump-instantiations "$@" $bench) 2>/dev/null |
+ (ulimit -t "$limit";$cvc4 --no-checking --no-interactive --dump-instantiations --inst-format=szs "$@" $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,11 +25,11 @@ function trywith {
}
function finishwith {
echo "--- Run $@ at $limit...";
- $cvc4 --no-checking --no-interactive --dump-instantiations "$@" $bench
+ $cvc4 --no-checking --no-interactive --dump-instantiations --inst-format=szs "$@" $bench
}
+trywith 15 --quant-cf --pre-skolem-quant --full-saturate-quant
trywith 30 --full-saturate-quant
-trywith 15 --decision=internal --full-saturate-quant
trywith 30 --finite-model-find --fmf-inst-engine --mbqi=gen-ev
trywith 30 --relevant-triggers --full-saturate-quant
trywith 15 --finite-model-find --decision=justification-stoponly
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback