.addKnowledgePackages()
.end(World.ROOT, KnowledgeBase.class.getName());
simulationFluent.newStatefulKnowledgeSession().end();
for (SimulationStepModel step : path.getSteps().values()) {
simulationFluent.newStep(step.getDistanceMillis());
StatefulKnowledgeSessionSimFluent session = simulationFluent.getStatefulKnowledgeSession();
for (AbstractCommandModel command : step.getCommands()) {
addCommand(session, command);
}
}
}