throw new NotBoundException( "No reasoner bound." );
} catch (NotBoundException e) {
e.printStackTrace();
}
StrategyConfiguration strategyConfig = HeraklesManager.getStrategyConfiguration();
// get the selected load strategy
String loadStrategy = strategyConfig.getSelectedLoadStrategy();
// if the load strategy is not selected, use the basic load strategy
if(loadStrategy.equals("")){
loadStrategy = "de.fzi.herakles.strategy.impl.BasicLoadStrategy";
}
// get the selected execution strategy
String executionStrategy = strategyConfig.getSelectedExecutionSttrategy();
// if the execution strategy is not selected, use the basic parallel execution strategy
if(executionStrategy.equals("")){
executionStrategy = "de.fzi.herakles.strategy.impl.BasicPStrategy";
}