Convenient method for building the world from String arguments.
(String... args)
| 114 | * Convenient method for building the world from String arguments. |
| 115 | */ |
| 116 | public static void buildWorld(String... args) { |
| 117 | Options options = Options.parse(args); |
| 118 | LoggerConfigs.setOutput(options.getOutputDir()); |
| 119 | Plan plan = processConfigs(options); |
| 120 | buildWorld(options, plan.analyses()); |
| 121 | LoggerConfigs.reconfigure(); |
| 122 | } |
| 123 | |
| 124 | private static void buildWorld(Options options, List<AnalysisConfig> analyses) { |
| 125 | Timer.runAndCount(() -> { |