Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
RoutingKit/include/routingkit/Constants.h
Go to the documentation of this file.
1#ifndef ROUTING_KIT_CONSTANTS_H
2#define ROUTING_KIT_CONSTANTS_H
3
4namespace RoutingKit{
5
6const unsigned invalid_id = 4294967295u;
7const unsigned inf_weight = 2147483647u;
8
9static_assert(inf_weight + inf_weight > inf_weight, "inf_weight is too large");
10static_assert(sizeof(unsigned)==4, "code base assumes that unsigned is 32 bit wide");
11
12} // namespace RoutingKit
13
14#endif