/**
  * Populates a scenario with data read from the input files which are named in the config which is
  * wrapped in the scenario.
  */
 public static void loadScenario(final Scenario scenario) {
   ScenarioLoaderImpl.loadScenario(scenario);
 }
 /**
  * Initializes a scenario and populates it with data read from the input files which are named in
  * the config.
  */
 public static Scenario loadScenario(final Config config) {
   return ScenarioLoaderImpl.loadScenario(config);
 }