# returns normally and prints the output of the solver to stderr.
function trywith {
limit=$1; shift;
- result="$(ulimit -S -t "$limit";$cvc4 -L smt2.6 --no-incremental --no-checking --no-interactive "$@" $bench)"
+ result="$(ulimit -S -t "$limit";$cvc4 -L smt2.6 --no-incremental --no-type-checking --no-interactive "$@" $bench)"
case "$result" in
sat|unsat) echo "$result"; exit 0;;
*) echo "$result" >&2;;
# use: finishwith [params..]
# to run cvc4 and let it output whatever it will to stdout.
function finishwith {
- $cvc4 -L smt2.6 --no-incremental --no-checking --no-interactive "$@" $bench
+ $cvc4 -L smt2.6 --no-incremental --no-type-checking --no-interactive "$@" $bench
}
# the following is designed for a run time of 20 min.
# we run in this way for line-buffered input, otherwise memory's a
# concern (plus it mimics what we'll end up getting from an
# application-track trace runner?)
- $cvc4 --force-logic="$logic" -L smt2.6 --print-success --no-checking --no-interactive "$@" <&0-
+ $cvc4 --force-logic="$logic" -L smt2.6 --print-success --no-type-checking --no-interactive "$@" <&0-
}
case "$logic" in
# use: finishwith [params..]
# to run cvc4 and let it output whatever it will to stdout.
function finishwith {
- $cvc4 -L smt2.6 --no-incremental --no-checking --no-interactive "$@" $bench
+ $cvc4 -L smt2.6 --no-incremental --no-type-checking --no-interactive "$@" $bench
}
case "$logic" in
# use: finishwith [params..]
# to run cvc4 and let it output whatever it will to stdout.
function finishwith {
- $cvc4 -L smt2.6 --no-incremental --no-checking --no-interactive "$@" $bench
+ $cvc4 -L smt2.6 --no-incremental --no-type-checking --no-interactive "$@" $bench
}
case "$logic" in