summaryrefslogtreecommitdiff
path: root/contrib/run-script-cascj7-tff
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-05-25 09:18:42 -0500
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-05-25 09:18:55 -0500
commit9d3f97ea91ffbf9ceea5814281a4d434d8e09a53 (patch)
treef1f9fccd3eb09b3d9333506b85ab09587e985b05 /contrib/run-script-cascj7-tff
parent363b838e4a0b799da537d60632fe844c5c5e4686 (diff)
Improve quantifier instantiation: always use original terms when matching (was missing for simple triggers). Minor updates to scripts.
Diffstat (limited to 'contrib/run-script-cascj7-tff')
-rwxr-xr-xcontrib/run-script-cascj7-tff4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/run-script-cascj7-tff b/contrib/run-script-cascj7-tff
index 41aec1335..5dd1a9d98 100755
--- a/contrib/run-script-cascj7-tff
+++ b/contrib/run-script-cascj7-tff
@@ -15,7 +15,7 @@ echo "------- cvc4-tff casc j7 : $bench at $2..."
function trywith {
limit=$1; shift;
echo "--- Run $@ at $limit...";
- (ulimit -t "$limit";$cvc4 --no-checking --no-interactive --dump-instantiations --inst-format=szs "$@" $bench) 2>/dev/null |
+ (ulimit -t "$limit";$cvc4 --no-checking --no-interactive "$@" $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;;
@@ -35,4 +35,4 @@ trywith 20 --finite-model-find
trywith 30 --full-saturate-quant
trywith 60 --quant-cf --full-saturate-quant
finishwith --cbqi-recurse --full-saturate-quant --pre-skolem-quant
-echo "% SZS status" "GaveUp for $filename"
+# echo "% SZS status" "GaveUp for $filename"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback