45template<
class E,
class V>
87 effort = std::numeric_limits<double>::max();
95 typedef double(*
Operation)(
const E*
const,
const V*
const, double);
102 const bool havePermissions,
const bool haveRestrictions) :
149 for (
auto& edgeInfo :
myFound) {
156 fromInfo.effort = 0.;
157 fromInfo.heuristicEffort = 0.;
158 fromInfo.prev =
nullptr;
167 virtual void reset(
const V*
const vehicle) {
181 virtual bool compute(
const E* from,
const E* to,
const V*
const vehicle,
182 SUMOTime msTime, std::vector<const E*>& into,
bool silent =
false) = 0;
190 const E* from,
double fromPos,
191 const E* to,
double toPos,
192 const V*
const vehicle,
193 SUMOTime msTime, std::vector<const E*>& into,
bool silent =
false) {
194 if (from != to || fromPos <= toPos) {
195 return compute(from, to, vehicle, msTime, into, silent);
197 return computeLooped(from, to, vehicle, msTime, into, silent);
204 inline bool computeLooped(
const E* from,
const E* to,
const V*
const vehicle,
205 SUMOTime msTime, std::vector<const E*>& into,
bool silent =
false) {
207 return compute(from, to, vehicle, msTime, into, silent);
209 double minEffort = std::numeric_limits<double>::max();
210 std::vector<const E*> best;
212 for (
const std::pair<const E*, const E*>& follower : from->getViaSuccessors(vClass)) {
213 std::vector<const E*> tmp;
214 compute(follower.first, to, vehicle, msTime, tmp,
true);
215 if (tmp.size() > 0) {
217 if (effort < minEffort) {
223 if (minEffort != std::numeric_limits<double>::max()) {
224 into.push_back(from);
225 std::copy(best.begin(), best.end(), std::back_inserter(into));
233 inline bool isProhibited(
const E*
const edge,
const V*
const vehicle)
const {
237 inline double getTravelTime(
const E*
const e,
const V*
const v,
const double t,
const double effort)
const {
238 return myTTOperation ==
nullptr ? effort : (*myTTOperation)(e, v, t);
241 inline void updateViaEdgeCost(
const E* viaEdge,
const V*
const v,
double& time,
double& effort,
double& length)
const {
242 while (viaEdge !=
nullptr && viaEdge->isInternal()) {
243 const double viaEffortDelta = this->
getEffort(viaEdge, v, time);
245 effort += viaEffortDelta;
246 length += viaEdge->getLength();
247 viaEdge = viaEdge->getViaSuccessors().front().second;
251 inline void updateViaCost(
const E*
const prev,
const E*
const e,
const V*
const v,
double& time,
double& effort,
double& length)
const {
252 if (prev !=
nullptr) {
253 for (
const std::pair<const E*, const E*>& follower : prev->getViaSuccessors()) {
254 if (follower.first == e) {
260 const double effortDelta = this->
getEffort(e, v, time);
261 effort += effortDelta;
263 length += e->getLength();
266 bool isValid(
const std::vector<const E*>& edges,
const V*
const v)
const {
267 for (
const E*
const e : edges) {
275 virtual double recomputeCosts(
const std::vector<const E*>& edges,
const V*
const v,
SUMOTime msTime,
double* lengthp =
nullptr)
const {
279 if (lengthp ==
nullptr) {
284 const E* prev =
nullptr;
285 for (
const E*
const e : edges) {
293 inline double recomputeCostsPos(
const std::vector<const E*>& edges,
const V*
const v,
double fromPos,
double toPos,
SUMOTime msTime,
double* lengthp =
nullptr)
const {
295 if (!edges.empty()) {
298 effort -= firstEffort * fromPos / edges.front()->getLength();
299 effort -= lastEffort * (edges.back()->getLength() - toPos) / edges.back()->getLength();
305 inline double setHint(
const typename std::vector<const E*>::const_iterator routeBegin,
const typename std::vector<const E*>::const_iterator routeEnd,
const V*
const v,
SUMOTime msTime) {
310 init((*routeBegin)->getNumericalID(), msTime);
311 for (
auto e = routeBegin + 1; e != routeEnd; ++e) {
315 auto& edgeInfo =
myEdgeInfos[(*e)->getNumericalID()];
316 edgeInfo.heuristicEffort = effort;
317 edgeInfo.prev = prev;
319 edgeInfo.effort = effort;
320 edgeInfo.leaveTime = time;
323#ifdef ROUTER_DEBUG_HINT
324 if (ROUTER_DEBUG_COND) {
325 std::cout <<
"DEBUG: hit=" << (*e)->getID()
326 <<
" TT=" << edgeInfo.
effort
327 <<
" EF=" << this->
getEffort(*e, v, edgeInfo.leaveTime)
328 <<
" HT=" << edgeInfo.heuristicEffort <<
"\n";
336 inline double getEffort(
const E*
const e,
const V*
const v,
double t)
const {
339 return (
myEdgeInfos[e->getNumericalID()].prohibitionEnd - t) + (*myOperation)(e, v,
myEdgeInfos[e->getNumericalID()].prohibitionEnd);
365 myEdgeInfos[item.first->getNumericalID()].prohibited =
false;
366 myEdgeInfos[item.first->getNumericalID()].prohibitionEnd = 0;
368 for (
auto item : toProhibit) {
369 if (item.second >= 0 && item.second != std::numeric_limits<double>::max()) {
370 myEdgeInfos[item.first->getNumericalID()].prohibitionEnd = item.second;
372 myEdgeInfos[item.first->getNumericalID()].prohibited =
true;
381 std::vector<const E*> tmp;
382 while (rbegin !=
nullptr) {
383 tmp.push_back(rbegin->
edge);
384 rbegin = rbegin->
prev;
386 std::copy(tmp.rbegin(), tmp.rend(), std::back_inserter(edges));
418 std::vector<typename SUMOAbstractRouter<E, V>::EdgeInfo>
myEdgeInfos;
423 std::vector<typename SUMOAbstractRouter<E, V>::EdgeInfo*>
myFound;
#define WRITE_MESSAGE(msg)
std::string elapsedMs2string(long long int t)
convert ms to string for log output
SUMOVehicleClass
Definition of vehicle classes to differ between different lane usage and authority types.
@ SVC_IGNORING
vehicles ignoring classes
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
void informf(const std::string &format, T value, Targs... Fargs)
adds a new formatted message
bool visited
whether the edge was already evaluated
EdgeInfo(const E *const e)
Constructor.
const E *const edge
The current edge.
double leaveTime
The time the vehicle leaves the edge.
double effort
Effort to reach the edge.
bool prohibited
whether the edge is currently not allowed
const EdgeInfo * prev
The previous edge.
double heuristicEffort
Estimated effort to reach the edge (effort + lower bound on remaining effort)
double prohibitionEnd
the time at which a temporary prohibitione ends
Operation myTTOperation
The object's operation to perform for travel times.
long long int myNumQueries
MsgHandler *const myErrorMsgHandler
the handler for routing errors
std::map< const E *, double > Prohibitions
Prohibitions and their estimated end time.
bool isProhibited(const E *const edge, const V *const vehicle) const
const bool myHavePermissions
whether edge permissions need to be considered
bool myBulkMode
whether we are currently operating several route queries in a bulk
long long int myQueryVisits
counters for performance logging
bool computeLooped(const E *from, const E *to, const V *const vehicle, SUMOTime msTime, std::vector< const E * > &into, bool silent=false)
Builds the route between the given edges using the minimum effort at the given time if from == to,...
virtual SUMOAbstractRouter * clone()=0
long long int myQueryStartTime
the time spent querying in milliseconds
virtual void setBulkMode(const bool mode)
SUMOAbstractRouter & operator=(const SUMOAbstractRouter &s)=delete
Invalidated assignment operator.
std::vector< typename SUMOAbstractRouter< E, V >::EdgeInfo > myEdgeInfos
The container of edge information.
bool compute(const E *from, double fromPos, const E *to, double toPos, const V *const vehicle, SUMOTime msTime, std::vector< const E * > &into, bool silent=false)
Builds the route between the given edges using the minimum effort at the given time,...
SUMOAbstractRouter(SUMOAbstractRouter *other)
Copy Constructor.
double(* Operation)(const E *const, const V *const, double)
Type of the function that is used to retrieve the edge effort.
Operation myOperation
The object's operation to perform.
double getTravelTime(const E *const e, const V *const v, const double t, const double effort) const
long long int myQueryTimeSum
void updateViaCost(const E *const prev, const E *const e, const V *const v, double &time, double &effort, double &length) const
virtual void reset(const V *const vehicle)
reset internal caches, used by CHRouter
const std::string & getType() const
double getEffort(const E *const e, const V *const v, double t) const
SUMOAbstractRouter(const std::string &type, bool unbuildIsWarning, Operation operation, Operation ttOperation, const bool havePermissions, const bool haveRestrictions)
Constructor.
virtual void prohibit(const Prohibitions &toProhibit)
Prohibitions myProhibited
The list of explicitly prohibited edges and estimated end time of prohibition.
void updateViaEdgeCost(const E *viaEdge, const V *const v, double &time, double &effort, double &length) const
double setHint(const typename std::vector< const E * >::const_iterator routeBegin, const typename std::vector< const E * >::const_iterator routeEnd, const V *const v, SUMOTime msTime)
void init(const int edgeID, const SUMOTime msTime)
void setAutoBulkMode(const bool mode)
bool isValid(const std::vector< const E * > &edges, const V *const v) const
bool myAmClean
whether we are already initialized
const bool myHaveRestrictions
whether edge restrictions need to be considered
const SUMOAbstractRouter< E, V >::EdgeInfo & getEdgeInfo(int index) const
void buildPathFrom(const typename SUMOAbstractRouter< E, V >::EdgeInfo *rbegin, std::vector< const E * > &edges)
Builds the path from marked edges.
bool myAutoBulkMode
whether we are currently trying to detect bulk mode automatically
virtual bool compute(const E *from, const E *to, const V *const vehicle, SUMOTime msTime, std::vector< const E * > &into, bool silent=false)=0
Builds the route between the given edges using the minimum effort at the given time The definition of...
virtual double recomputeCosts(const std::vector< const E * > &edges, const V *const v, SUMOTime msTime, double *lengthp=nullptr) const
void endQuery(int visits)
virtual ~SUMOAbstractRouter()
Destructor.
std::vector< typename SUMOAbstractRouter< E, V >::EdgeInfo * > myFrontierList
A container for reusage of the min edge heap.
double recomputeCostsPos(const std::vector< const E * > &edges, const V *const v, double fromPos, double toPos, SUMOTime msTime, double *lengthp=nullptr) const
std::vector< typename SUMOAbstractRouter< E, V >::EdgeInfo * > myFound
list of visited Edges (for resetting)
const std::string myType
the type of this router
static long getCurrentMillis()
Returns the current time in milliseconds.
#define UNUSED_PARAMETER(x)