// FIXME no need for this context anymore, we just put references to these nodes in the stop vertices themselves.
context.stopDepartNodes.put(stop, depart);
stopVertex.departVertex = depart;
// Add edges from arrive to stop and stop to depart
new PreAlightEdge(arrive, stopVertex);
new PreBoardEdge(stopVertex, depart);
}
}
}
}