#!/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
# Add the external CLASSPATH to allow for external graph writers
exec java -ea -classpath $JAR_PATH:$CLASSPATH ikr.simtree.SimTree "$@"

# End of file
