SlideShare une entreprise Scribd logo
1  sur  58
Télécharger pour lire hors ligne
Vehicle Routing and
Scheduling
Martin Savelsbergh
The Logistics Institute
Georgia Institute of Technology
Vehicle Routing and
Scheduling
Part I:
Basic Models and Algorithms
Introduction
Freight routing
routing of shipments
Service routing
dispatching of repair technicians
Passenger routing
transportation of elderly
Freight Routing (LTL)
pickup and delivery to and from end-of-line
terminal
shuttle from end-of-line terminal to regional
distribution center
transportation between distribution centers
rail
sleeper teams
single driver
LTL Linehaul Network
EOLs
DCs
Customers
Origin-Destination Route
Origin
EOL
DC
Destination
Linehaul
scheduling
Pickup and
delivery
Shuttle
scheduling
Routing and Scheduling
Routing and scheduling does not follow a
single “one-size-fits-all” formula. Routing
and scheduling software must usually be
customized to reflect the operating
environment and the customer needs and
characteristics
Models
Traveling Salesman Problem (TSP)
Vehicle Routing Problem (VRP)
Vehicle Routing Problem with Time
Windows (VRPTW)
Pickup and Delivery Problem with Time
Windows (PDPTW)
Traveling Salesman Problem
In the TSP the objective is to find the shortest
tour through a set of cities, visiting each city
exactly once and returning to the starting city.
Type of decisions:
routing
Traveling Salesman Problem
Vehicle Routing Problem
In the VRP a number of vehicles located at a
central depot has to serve a set of
geographically dispersed customers. Each
vehicle has a given capacity and each customer
has a given demand. The objective is to
minimize the total distance traveled.
Type of decisions:
assigning
routing
Vehicle Routing Problem
Vehicle Routing Problem
with Time Windows
In the VRPTW a number of vehicles is located at
a central depot and has to serve a set of
geographically dispersed customers. Each
vehicle has a given capacity. Each customer
has a given demand and has to be served within
a given time window.
Type of decisions:
assigning
routing
scheduling
Vehicle Routing Problem
with Time Windows
Pickup and Delivery Problem
with Time Windows
In the PDPTW a number of vehicles has to serve a
number of transportation requests. Each vehicle
has a given capacity. Each transportation request
specifies the size of the load to be transported,
the location where it is to be picked up plus a
pickup time window, and the location where it is
to be delivered plus a delivery time window.
Type of decisions:
assigning
routing
scheduling
Pickup and Delivery Problem
with Time Windows
Delivery
Pickup
Pickup and Delivery Problem
with Time Windows
Delivery
Pickup
Routing and Scheduling
Objectives
minimize vehicles
minimize miles
minimize labor
satisfy service requirements
maximize orders
maximize volume delivered per mile
Routing and Scheduling
Practical considerations
Single vs. multiple depots
Vehicle capacity
homogenous vs. hetrogenous
volume vs. weight
Driver availability
Fixed vs. variable start times
DoT regulations (10/1, 15/1, 70/8)
Routing and Scheduling
Practical considerations (cont.)
Delivery windows
hard vs. soft
single vs. multiple
periodic schedules
Service requirements
Maximum ride time
Maximum wait time
Routing and Scheduling
Practical considerations (cont.)
Fixed and variable delivery times
Fixed vs. variable regions/route
Recent Variants
Dynamic routing and scheduling problems
More and more important due to availability
of GPS and wireless communication
Information available to design a set of
routes and schedules is revealed dynamically
to the decision maker
Order information (e.g., pickups)
Vehicle status information (e.g., delays)
Exception handling (e.g., vehicle breakdown)
Recent Variants
Stochastic routing and scheduling
problems
Size of demand
Travel times
Algorithms
Construction algorithms
Improvement algorithms
Set covering based algorithms
Construction Heuristics
Savings heuristic
Insertion heuristics
Savings
Initial
i j
Intermediate Final
Savings s(i,j) = c(i,0) + c(0,j) – c(i,j)
Savings Heuristic (Parallel)
Step 1. Compute savings s(i,j) for all
pairs of customers. Sort savings.
Create out-and-back routes for all
customers.
Step 2. Starting from the top of the
savings list, determine whether there exist
two routes, one containing (i,0) and the
other containing (0,j). If so, merge the
routes if the combined demand is less
than the vehicle capacity.
Savings Heuristics (Sequential)
Step 1. Compute savings s(i,j) for all
pairs of customers. Sort savings. Create
out-and-back routes for all customers.
Step 2. Consider route (0,i,…,j,0) and
determine the best savings s(k,i) and s(j,l)
with routes containing (k,0) and (0,l).
Implement the best of the two. If no
more savings exist for this route move to
the next.
Savings Heuristic -
Enhancement
Route shape parameter
s(i,j) = c(i,0) + c(0,j) - λ c(i,j)
The larger λ, the more emphasis is placed
on the distance between customers being
connected
Insertion
Initial
i
j
k
Intermediate Final
Insertion Heuristics
Start with a set of
unrouted stops
Select an unrouted stop
Are there any
unrouted stops?
Insert selected stop in
current set of routes
Yes
Done
No
Nearest addition
Selection:
If partial tour T does not include all cities,
find cities k and j, j on the tour and k not, for
which c(j,k) is minimized.
Insertion:
Let {i,j} be either one of the two edges
involving j in T, and replace it by {i,k} and
{k,j} to obtain a new tour including k.
Nearest Insertion
Selection:
If partial tour T does not include all cities,
find cities k and j, j on the tour and k not, for
which c(j,k) is minimized.
Insertion:
Let {i,j} be the edge of T which minimizes
c(i,k) + c(k,j) - c(i,j), and replace it by {i,k}
and {k,j} to obtain a new tour including k.
Farthest Insertion
Selection:
If partial tour T does not include all cities,
find cities k and j, j on the tour and k not, for
which c(j,k) is maximized.
Insertion:
Let {i,j} be the edge of T which minimizes
c(i,k) + c(k,j) - c(i,j), and replace it by {i,k}
and {k,j} to obtain a new tour including k.
Cheapest Insertion
Selection:
If partial tour T does not include all cities,
find for each k not on T the edge {i,j} of T
which minimizes c(T,k) = c(i,k) + c(k,j) -
c(i,j). Select city k for which c(T,k) is
minimized.
Insertion:
Let {i,j} be the edge of T for which c(T,k) is
minimized, and replace it by {i,k} and {k,j} to
obtain a new tour including k.
Worst case results
Nearest addition: 2
Nearest insertion: 2
Cheapest insertion: 2
Farthest insertion:
> 2.43 (Euclidean)
> 6.5 (Triangle inequality)
Implementation
Priority Queue
insert(value, key)
getTop(value, key)
setTop(value, key)
k-d Tree
deletePt(point)
nearest(point)
Implementation
Tree->deletePt(StartPt)
NNOut[StartPt] := Tree->nearest(StartPt)
PQ->insert(Dist(StartPt, NNOut(StartPt)), StartPt)
loop n-1 time
loop
PQ->getTop(ThisDist, x)
y := NNOut[x]
If y not in tour, then break
NNOut[x] = Tree->nearest(x)
PQ->setTop(Dist(x, NNOut[x]), x)
Add point y to tour; x is nearest neighbor in tour
Tree->deletePt(y)
NNOut[y] = Tree->nearest(y)
PQ->insert(Dist(y, NNOut[y]), y)
Delayed update
Find nearest point
Update
Improvement Algorithms
Start with a
feasible solution x
x
y
z
Is there an
improving neighbor
y in N(x)?
Define neighborhood N(x).
Replace x by y
Yes
N(x)
x is locally optimal
No
2-change
O(n2) possibilities
3-change
O(n3) possibilities
1-Relocate
O(n2) possibilities
2-Relocate
O(n2) possibilities
Swap
O(n2) possibilities
GENI
Vehicle Routing and
Scheduling
Vehicle Routing and
Scheduling
1-relocate
B-cyclic k-transfer
Set covering based
algorithms
Assignment decisions are often the most
important
Assignment decisions are often the most
difficult
Vehicle routing and scheduling
Possible route
Vehicle routing and scheduling
Possible route
Vehicle routing and scheduling
Possible route
Vehicle routing and scheduling
Possible route
Vehicle routing and scheduling
Possible route
Vehicle routing and scheduling
Possible route
Vehicle routing and scheduling
Possible route
Set partitioning formulation
c1 c2 c3 c4 …
Cust 1 1 1 0 1 … = 1
Cust 2 1 0 1 0 … = 1
Cust 3 0 1 1 0 … = 1
…
Cust n 0 1 0 0 … = 1
y/n y/n y/n y/n …
Set covering based
algorithms
Advantage
very flexible
heuristics for route generation
complicating constraints in route generation
Disadvantage
small to medium size instances

Contenu connexe

Tendances

Transportation in supply chain
Transportation in supply chainTransportation in supply chain
Transportation in supply chainMoine Iqbal
 
Role of Distribution in supply chain
Role of Distribution in supply chainRole of Distribution in supply chain
Role of Distribution in supply chainMehwishShamshad
 
Introduction to Logistics Management
Introduction to Logistics ManagementIntroduction to Logistics Management
Introduction to Logistics ManagementLitunya Laurean
 
Logistics and Supply Chain Management-Overview
Logistics and Supply Chain Management-OverviewLogistics and Supply Chain Management-Overview
Logistics and Supply Chain Management-OverviewThomas Tanel
 
Logistics management
Logistics management Logistics management
Logistics management Arbaz Khan
 
Demand forecasting in supply chain
Demand forecasting in supply chainDemand forecasting in supply chain
Demand forecasting in supply chainvishnuvsvn
 
Role of logistics in competitive strategy
Role of logistics in competitive strategyRole of logistics in competitive strategy
Role of logistics in competitive strategyArmaan Salik
 
Logistics-competitive advantage
Logistics-competitive advantageLogistics-competitive advantage
Logistics-competitive advantageKiran Gohil
 
Pricing & Revenue Management In A Supply Chain
Pricing & Revenue Management In A Supply ChainPricing & Revenue Management In A Supply Chain
Pricing & Revenue Management In A Supply ChainRishav Sircar
 
Logistics and Supply Chain
Logistics and Supply ChainLogistics and Supply Chain
Logistics and Supply ChainVikram Dahiya
 
Transportation and logistics
Transportation and logistics Transportation and logistics
Transportation and logistics guest06c40002
 
Logistics and Transportation
Logistics and Transportation Logistics and Transportation
Logistics and Transportation arkarra
 
Logistics strategy & planning, Customer Service & Products
Logistics strategy & planning, Customer Service & ProductsLogistics strategy & planning, Customer Service & Products
Logistics strategy & planning, Customer Service & ProductsFahad Ali
 
SOURCING DECISIONS IN A SUPPLY CHAIN
SOURCING DECISIONS IN A SUPPLY CHAINSOURCING DECISIONS IN A SUPPLY CHAIN
SOURCING DECISIONS IN A SUPPLY CHAINadnan haidar
 
Logistics of transportation & distribution
Logistics of transportation & distributionLogistics of transportation & distribution
Logistics of transportation & distributionNavindu Munidasa
 
Logistics costing ppt
Logistics costing pptLogistics costing ppt
Logistics costing pptMukul kale
 

Tendances (20)

Transportation in supply chain
Transportation in supply chainTransportation in supply chain
Transportation in supply chain
 
Transportation management
Transportation managementTransportation management
Transportation management
 
Role of Distribution in supply chain
Role of Distribution in supply chainRole of Distribution in supply chain
Role of Distribution in supply chain
 
Introduction to Logistics Management
Introduction to Logistics ManagementIntroduction to Logistics Management
Introduction to Logistics Management
 
Logistics and Supply Chain Management-Overview
Logistics and Supply Chain Management-OverviewLogistics and Supply Chain Management-Overview
Logistics and Supply Chain Management-Overview
 
Logistics management
Logistics management Logistics management
Logistics management
 
Demand forecasting in supply chain
Demand forecasting in supply chainDemand forecasting in supply chain
Demand forecasting in supply chain
 
Role of logistics in competitive strategy
Role of logistics in competitive strategyRole of logistics in competitive strategy
Role of logistics in competitive strategy
 
Logistics-competitive advantage
Logistics-competitive advantageLogistics-competitive advantage
Logistics-competitive advantage
 
Pricing & Revenue Management In A Supply Chain
Pricing & Revenue Management In A Supply ChainPricing & Revenue Management In A Supply Chain
Pricing & Revenue Management In A Supply Chain
 
Logistics and Supply Chain
Logistics and Supply ChainLogistics and Supply Chain
Logistics and Supply Chain
 
Design of supply chain networks
Design of supply chain networksDesign of supply chain networks
Design of supply chain networks
 
Transportation and logistics
Transportation and logistics Transportation and logistics
Transportation and logistics
 
Supply chain management
Supply chain managementSupply chain management
Supply chain management
 
Logistics and Transportation
Logistics and Transportation Logistics and Transportation
Logistics and Transportation
 
Logistics strategy & planning, Customer Service & Products
Logistics strategy & planning, Customer Service & ProductsLogistics strategy & planning, Customer Service & Products
Logistics strategy & planning, Customer Service & Products
 
SOURCING DECISIONS IN A SUPPLY CHAIN
SOURCING DECISIONS IN A SUPPLY CHAINSOURCING DECISIONS IN A SUPPLY CHAIN
SOURCING DECISIONS IN A SUPPLY CHAIN
 
Logistics of transportation & distribution
Logistics of transportation & distributionLogistics of transportation & distribution
Logistics of transportation & distribution
 
Logistics costing ppt
Logistics costing pptLogistics costing ppt
Logistics costing ppt
 
Logistic
LogisticLogistic
Logistic
 

Similaire à Supply chain logistics : vehicle routing and scheduling

A Dynamic Logistic Dispatching System With Set-Based Particle Swarm Optimization
A Dynamic Logistic Dispatching System With Set-Based Particle Swarm OptimizationA Dynamic Logistic Dispatching System With Set-Based Particle Swarm Optimization
A Dynamic Logistic Dispatching System With Set-Based Particle Swarm OptimizationRajib Roy
 
Cab travel time prediction using ensemble models
Cab travel time prediction using ensemble modelsCab travel time prediction using ensemble models
Cab travel time prediction using ensemble modelsAyan Sengupta
 
Reinforcement Learning for EVRP with V2G
Reinforcement Learning for EVRP with V2GReinforcement Learning for EVRP with V2G
Reinforcement Learning for EVRP with V2GPrasant Misra
 
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...csandit
 
Case Study for Plant Layout :: A modern analysis
Case Study for Plant Layout :: A modern analysisCase Study for Plant Layout :: A modern analysis
Case Study for Plant Layout :: A modern analysisSarang Bhutada
 
ESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, GreeceESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, GreeceLIFE GreenYourMove
 
When and where are bus express services justified?
When and where are bus express services justified?When and where are bus express services justified?
When and where are bus express services justified?BRTCoE
 
Mixed Integer Linear Programming Formulation for the Taxi Sharing Problem
Mixed Integer Linear Programming Formulation for the Taxi Sharing ProblemMixed Integer Linear Programming Formulation for the Taxi Sharing Problem
Mixed Integer Linear Programming Formulation for the Taxi Sharing Problemjfrchicanog
 
Webinar: How to design express services on a bus transit network
Webinar: How to design express services on a bus transit networkWebinar: How to design express services on a bus transit network
Webinar: How to design express services on a bus transit networkBRTCoE
 
Optimal Path Detremination under Dynamic Traffic Conditions
Optimal Path Detremination under Dynamic Traffic ConditionsOptimal Path Detremination under Dynamic Traffic Conditions
Optimal Path Detremination under Dynamic Traffic ConditionsVarun Gupta
 
Machine Learning Approach to Report Prioritization with an ...
Machine Learning Approach to Report Prioritization with an ...Machine Learning Approach to Report Prioritization with an ...
Machine Learning Approach to Report Prioritization with an ...butest
 
Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...
Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...
Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...GreenYourMove
 
Modelling station choice
Modelling station choiceModelling station choice
Modelling station choiceMarcus Young
 
A feasible solution algorithm for a primitive vehicle routing problem
A feasible solution algorithm for a primitive vehicle routing problemA feasible solution algorithm for a primitive vehicle routing problem
A feasible solution algorithm for a primitive vehicle routing problemCem Recai Çırak
 
Platforming_Automated_And_Quickly_Beamer
Platforming_Automated_And_Quickly_BeamerPlatforming_Automated_And_Quickly_Beamer
Platforming_Automated_And_Quickly_BeamerPeter Sels
 
Central moments of traffic delay at a signalized intersection
Central moments of traffic delay at a signalized intersectionCentral moments of traffic delay at a signalized intersection
Central moments of traffic delay at a signalized intersectionAlexander Decker
 
Sampling-Based Planning Algorithms for Multi-Objective Missions
Sampling-Based Planning Algorithms for Multi-Objective MissionsSampling-Based Planning Algorithms for Multi-Objective Missions
Sampling-Based Planning Algorithms for Multi-Objective MissionsMd Mahbubur Rahman
 

Similaire à Supply chain logistics : vehicle routing and scheduling (20)

Optimizing last mile delivery
Optimizing last mile deliveryOptimizing last mile delivery
Optimizing last mile delivery
 
A Dynamic Logistic Dispatching System With Set-Based Particle Swarm Optimization
A Dynamic Logistic Dispatching System With Set-Based Particle Swarm OptimizationA Dynamic Logistic Dispatching System With Set-Based Particle Swarm Optimization
A Dynamic Logistic Dispatching System With Set-Based Particle Swarm Optimization
 
Cab travel time prediction using ensemble models
Cab travel time prediction using ensemble modelsCab travel time prediction using ensemble models
Cab travel time prediction using ensemble models
 
Reinforcement Learning for EVRP with V2G
Reinforcement Learning for EVRP with V2GReinforcement Learning for EVRP with V2G
Reinforcement Learning for EVRP with V2G
 
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
Hybrid Ant Colony Optimization for Real-World Delivery Problems Based on Real...
 
Case Study for Plant Layout :: A modern analysis
Case Study for Plant Layout :: A modern analysisCase Study for Plant Layout :: A modern analysis
Case Study for Plant Layout :: A modern analysis
 
ESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, GreeceESCC 2016, July 10-16, Athens, Greece
ESCC 2016, July 10-16, Athens, Greece
 
When and where are bus express services justified?
When and where are bus express services justified?When and where are bus express services justified?
When and where are bus express services justified?
 
Mixed Integer Linear Programming Formulation for the Taxi Sharing Problem
Mixed Integer Linear Programming Formulation for the Taxi Sharing ProblemMixed Integer Linear Programming Formulation for the Taxi Sharing Problem
Mixed Integer Linear Programming Formulation for the Taxi Sharing Problem
 
Webinar: How to design express services on a bus transit network
Webinar: How to design express services on a bus transit networkWebinar: How to design express services on a bus transit network
Webinar: How to design express services on a bus transit network
 
Optimal Path Detremination under Dynamic Traffic Conditions
Optimal Path Detremination under Dynamic Traffic ConditionsOptimal Path Detremination under Dynamic Traffic Conditions
Optimal Path Detremination under Dynamic Traffic Conditions
 
Machine Learning Approach to Report Prioritization with an ...
Machine Learning Approach to Report Prioritization with an ...Machine Learning Approach to Report Prioritization with an ...
Machine Learning Approach to Report Prioritization with an ...
 
Presentation escc 2016
Presentation escc 2016Presentation escc 2016
Presentation escc 2016
 
Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...
Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...
Presentation of GreenYourMove's hybrid approach in 3rd International Conferen...
 
Modelling station choice
Modelling station choiceModelling station choice
Modelling station choice
 
A feasible solution algorithm for a primitive vehicle routing problem
A feasible solution algorithm for a primitive vehicle routing problemA feasible solution algorithm for a primitive vehicle routing problem
A feasible solution algorithm for a primitive vehicle routing problem
 
Platforming_Automated_And_Quickly_Beamer
Platforming_Automated_And_Quickly_BeamerPlatforming_Automated_And_Quickly_Beamer
Platforming_Automated_And_Quickly_Beamer
 
Central moments of traffic delay at a signalized intersection
Central moments of traffic delay at a signalized intersectionCentral moments of traffic delay at a signalized intersection
Central moments of traffic delay at a signalized intersection
 
Sampling-Based Planning Algorithms for Multi-Objective Missions
Sampling-Based Planning Algorithms for Multi-Objective MissionsSampling-Based Planning Algorithms for Multi-Objective Missions
Sampling-Based Planning Algorithms for Multi-Objective Missions
 
E017512630
E017512630E017512630
E017512630
 

Dernier

Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park masabamasaba
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfproinshot.com
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfVishalKumarJha10
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durbanmasabamasaba
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfonteinmasabamasaba
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...masabamasaba
 

Dernier (20)

Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban%in Durban+277-882-255-28 abortion pills for sale in Durban
%in Durban+277-882-255-28 abortion pills for sale in Durban
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 

Supply chain logistics : vehicle routing and scheduling