MCPcopy Index your code
hub / github.com/PyVRP/PyVRP / hasExcessLoad

Method hasExcessLoad

pyvrp/cpp/Route.cpp:440–445  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

438}
439
440bool Route::hasExcessLoad() const
441{
442 return std::any_of(excessLoad_.begin(),
443 excessLoad_.end(),
444 [](auto const excess) { return excess > 0; });
445}
446
447bool Route::hasExcessDistance() const { return excessDistance_ > 0; }
448

Callers

nothing calls this directly

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected