SEQUENCE
: the jobs need to be visited in the given orderDIRECT_SEQUENCE
: the jobs need to be visited in the given order, one after the otherSAME_TRIP
: the jobs need to be visited in the same trip, the sequence does not matterSAME_TIME
: the jobs need to be visited at the same time, the assigned resource will be differentPICKUP_AND_DELIVERY
: the jobs need to be in the same trip and the pickup needs to happen before the dropoff. (special case of job relation)SAME_RESOURCE
: the jobs need to be visited by the same resource (could be another day)SAME_TRIP
relation in combination with a SEQUENCE
relation that requires first to do the pickup and then the delivery.
The shortcut is the PICKUP_AND_DELIVERY
job relation for maximum two jobs, the first is the pickup, the second is the delivery.
SAME_TRIP
relation.
SAME_RESOURCE
relation.