void ROLoader::processAllRoutesWithBulkRouter(SUMOTime /* start */, SUMOTime end, RONet& net, SUMOAbstractRouter<ROEdge, ROVehicle>& router) { myLoaders.loadNext(SUMOTime_MAX); RouteAggregator::processAllRoutes(net, router); net.saveAndRemoveRoutesUntil(myOptions, router, end); }
void ROLoader::processRoutes(SUMOTime start, SUMOTime end, RONet& net, SUMOAbstractRouter<ROEdge, ROVehicle>& router) { SUMOTime absNo = end - start; // skip routes that begin before the simulation's begin // loop till the end bool endReached = false; bool errorOccured = false; const SUMOTime firstStep = myLoaders.getFirstLoadTime(); SUMOTime lastStep = firstStep; for (SUMOTime time = firstStep; time < end && !errorOccured && !endReached; time += DELTA_T) { writeStats(time, start, absNo); myLoaders.loadNext(time); net.saveAndRemoveRoutesUntil(myOptions, router, time); endReached = !net.furtherStored(); lastStep = time; errorOccured = MsgHandler::getErrorInstance()->wasInformed() && !myOptions.getBool("ignore-errors"); } if (myLogSteps) { WRITE_MESSAGE("Routes found between time steps " + time2string(firstStep) + " and " + time2string(lastStep) + "."); } }