summaryrefslogtreecommitdiff
path: root/contrib/run-script-cascj7-tff
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2014-06-23 21:53:14 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2014-06-23 21:53:20 +0200
commit10f34b74c309fa24ec14e92d65f96d1e831264a5 (patch)
treeb4842f0b8cee943fe017212f433128535aa26d26 /contrib/run-script-cascj7-tff
parent35cd511b65a3a5dd6ad39e75df2b4fa57061f3b5 (diff)
Make language explicit in casc 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 9422f8536..692cf8875 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 "$@" $bench) 2>/dev/null |
+ (ulimit -t "$limit";$cvc4 --lang=tptp --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;;
@@ -25,7 +25,7 @@ function trywith {
}
function finishwith {
echo "--- Run $@...";
- $cvc4 --no-checking --no-interactive "$@" $bench
+ $cvc4 --lang=tptp --no-checking --no-interactive "$@" $bench
}
trywith 15 --cbqi-recurse --full-saturate-quant
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback