.help("Path to the directory of the output. By default this is ./output of the directory of the executable.");
parser.addArgument("-suq").required(false)
.help("Indicates that the folder structure for input and output is fully controlled by the user. Only a single scenario is run, no project or project structure is necessary. Intended for the SUQ-Controller. Outputpath has to be specified!")
this.setOutputPaths(Paths.get(outputDir),suq);// TODO [priority=high] [task=bugfix] [Error?] this is a relative path. If you start the application via eclipse this will be VadereParent/outputs
this.setOutputPaths(Paths.get(outputDir));// TODO [priority=high] [task=bugfix] [Error?] this is a relative path. If you start the application via eclipse this will be VadereParent/output
this.finishedListener=scenarioFinishedListener;
}
...
...
@@ -143,15 +138,6 @@ public class ScenarioRun implements Runnable {