From 037f0bc2f7190e26f732661c4a50b9066d85a5c7 Mon Sep 17 00:00:00 2001 From: Gabriel Dennis Date: Fri, 14 Jul 2023 12:20:57 +1000 Subject: [PATCH 1/2] fix: fixing the deckgl file location Changes the deckgl output file location from "agents/MaldonExample" to "agents/archetype/MaldonExample". This was causing the minimal example explained in the relase README file to break at the end of the simulation run, as this directory did not exist. --- ees/scenarios/mount-alexander-shire/maldon-example/ees.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ees/scenarios/mount-alexander-shire/maldon-example/ees.xml b/ees/scenarios/mount-alexander-shire/maldon-example/ees.xml index d4ed792b..73e04f05 100644 --- a/ees/scenarios/mount-alexander-shire/maldon-example/ees.xml +++ b/ees/scenarios/mount-alexander-shire/maldon-example/ees.xml @@ -37,7 +37,7 @@ 12:00 - test/output/io/github/agentsoz/ees/agents/MaldonExample/test/trips.deckgl.json + test/output/io/github/agentsoz/ees/agents/archetype/MaldonExample/test/trips.deckgl.json From e928d253a6f015d5d624291c22735b1f102b7357 Mon Sep 17 00:00:00 2001 From: Gabriel Dennis Date: Fri, 14 Jul 2023 12:29:39 +1000 Subject: [PATCH 2/2] docs: updating release README with runnable example Modifies the example command in the release README to automatically include the jar files in the class path. --- ees/README.release.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ees/README.release.txt b/ees/README.release.txt index ea419f31..c01a0531 100644 --- a/ees/README.release.txt +++ b/ees/README.release.txt @@ -9,8 +9,8 @@ Copyright (C) 2014-2019 by its authors. To run the included example scenario do: ``` -java -Xms2g -Xmx2g \ - -cp libs/*:eeslib-2.1.1-SNAPSHOT.jar \ - io.github.agentsoz.ees.Run \ +java -Xms2g -Xmx2g \ + -cp $(find libs/ -name "*.jar" | tr '\n' ':./'):eeslib-2.1.1-SNAPSHOT.jar \ + io.github.agentsoz.ees.Run \ --config scenarios/mount-alexander-shire/maldon-example/ees.xml ```