Skip to content

Commit

Permalink
fix #14619
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Mar 28, 2024
1 parent 4eb0781 commit 0253c49
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utils/router/PedestrianRouter.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,10 @@ class PedestrianRouter : public SUMOAbstractRouter<E, IntermodalTrip<E, N, V> >
}
_IntermodalTrip trip(from, to, departPos, arrivalPos, speed, msTime, onlyNode);
std::vector<const _IntermodalEdge*> intoPed;
const bool silent = allEdges; // no warning is needed when called from MSPModel_Striping
const bool success = myInternalRouter->compute(myPedNet->getDepartConnector(from),
myPedNet->getArrivalConnector(to),
&trip, msTime, intoPed);
&trip, msTime, intoPed, silent);
double time = 0.;
if (success) {
for (const _IntermodalEdge* pedEdge : intoPed) {
Expand Down

0 comments on commit 0253c49

Please sign in to comment.