default

loading
details
attribute current value
name default
description no description
owning solver UltimateEliminator+MathSAT-5.6.7
contents
#!/bin/sh

# test if stdin or file
#if test -n "$1"; then
#    echo "Read from $1";
#elif test ! -t 0; then
#    echo "Read from stdin"
#else
#    echo "No data provided..."
#fi

[ $# -ge 1 -a -f "$1" ] && input="$1" || input="--"
pushd ../Ultimate > /dev/null
./jdk-11.0.2/bin/java \
-Dosgi.configuration.area=config/ \
-Xmx40G \
-Xss4m \
-jar plugins/org.eclipse.equinox.launcher_1.5.800.v20200727-1323.jar \
-data "$TMPDIR" \
-s ./../mathsat.epf \
-external-solver "mathsat" \
$input
popd > /dev/null

back to UltimateEliminator+MathSAT-5.6.7