summaryrefslogtreecommitdiff
path: root/contrib/run-script-cascj7-tff
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/run-script-cascj7-tff')
-rwxr-xr-xcontrib/run-script-cascj7-tff8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/run-script-cascj7-tff b/contrib/run-script-cascj7-tff
index 8033bed1f..4506e511d 100755
--- a/contrib/run-script-cascj7-tff
+++ b/contrib/run-script-cascj7-tff
@@ -9,13 +9,13 @@ filename=${file%.*}
echo "------- cvc4-tff $bench at $2..."
# use: trywith [params..]
-# to attempt a run. Only thing printed on stdout is "sat" or "unsat", in
-# which case this run script terminates immediately. Otherwise, this
+# 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 -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,7 +25,7 @@ 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 --cbqi-recurse --full-saturate-quant
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback