diff options
Diffstat (limited to 'scripts/build/solvers.sh')
-rwxr-xr-x | scripts/build/solvers.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/scripts/build/solvers.sh b/scripts/build/solvers.sh new file mode 100755 index 00000000..71ad0c2d --- /dev/null +++ b/scripts/build/solvers.sh @@ -0,0 +1,30 @@ +#!/bin/bash -x +# Make sure we exit if there is a failure +set -e + +DIR="$(cd "$(dirname "$0")" && pwd)" +source "${DIR}/common-defaults.sh" + +: ${SOLVERS?"Solvers must be specified"} +SOLVER_LIST=$(echo "${SOLVERS}" | sed 's/:/ /g') + +for solver in ${SOLVER_LIST}; do + echo "Getting solver ${solver}" + case ${solver} in + STP) + echo "STP" + "${DIR}/solver-stp.sh" + ;; + Z3) + echo "Z3" + "${DIR}/solver-z3.sh" + ;; + metaSMT) + echo "metaSMT" + "${DIR}/solver-metasmt.sh" + ;; + *) + echo "Unknown solver ${solver}" + exit 1 + esac +done |