default

loading
details
attribute current value
name default
description no description
owning solver smtinterpol-2.5-943-gfb4a349d-MUSes
contents
#!/bin/bash

WALLCLOCK_LIMIT="${STAREXEC_WALLCLOCK_LIMIT:-60}"
ENUMTIMEOUT=$(expr $WALLCLOCK_LIMIT - 10)
ENUMTIMEOUT=$(expr $ENUMTIMEOUT \* 1000)

# Run script for SMTInterpol for the STAREXEC cluster
if [ "$#" -gt 1 ]; then
# ignore bogus parameters given by starexec
set -- "$1"
fi
java -Xms1536m -Xmx50g -da -dsa -jar smtinterpol.jar -q -remus -o continue-on-error=false -o produce-proofs -o proof-check-mode -o enumeration-timeout="$ENUMTIMEOUT" -o interpolation-heuristic=SMALLEST "$@" 2>/dev/null

back to smtinterpol-2.5-943-gfb4a349d-MUSes