swh:1:snp:658089edcf6aef5f1ce59e311db02dd935c5e291
Raw File
Tip revision: 77145fd0cac968cdaaf855ccc5108503f9ecd1f1 authored by Steven van den Broek on 19 July 2024, 15:08:08 UTC
Add link to Zenodo and add subtitle
Tip revision: 77145fd
grsi-run.sh
#!/bin/sh

# This script reproduces a representative figure.
# It installs OpenJDK JDK 21 (assuming an OS like Ubuntu 20.04), builds the project, and runs the algorithm on an example input.
# The expected result is a file called Mills.svg in the current directory.

sudo apt install openjdk-21-jdk
./gradlew jvmRun -DmainClass=GenerateExampleKt
back to top