#!/bin/bash

# Path of the SimTree jar file. The path must be absolute (starting with /)
JAR_PATH=<JarPath>/ikr-simtree.jar

# SimTree contains many internal assertions so adding -ea is recommended
exec java -ea -classpath $JAR_PATH ikr.simtree.`basename $0` "$@"

# End of file
